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

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

add_executable(phoenix_memcheck ${program_SRC})
target_link_libraries(phoenix_memcheck phoenix_memcheck_config phoenix_toml phoenix_file_parser phoenix_option_parser phoenix_core)

install(TARGETS phoenix_memcheck RUNTIME DESTINATION bin)


