
add_definitions(-DCMAKE_INSTALL_PREFIX="${CMAKE_INSTALL_PREFIX}")

file(GLOB program_SRC "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp")

add_executable(phoenix_callgrind ${program_SRC})
target_link_libraries(phoenix_callgrind phoenix_callgrind_config phoenix_toml phoenix_file_parser phoenix_option_parser phoenix_core)

install(TARGETS phoenix_callgrind RUNTIME DESTINATION bin)


