0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-27 00:21:11 +08:00
2018-04-23 01:36:11 +03:00

24 lines
468 B
CMake

set(CPP_FILES
converter.cpp
reader.cpp)
set(HEADER_FILES
converter.h
reader.h)
include_directories(../easy_profiler_core/)
include_directories(./include)
add_executable(profiler_converter ${HEADER_FILES} ${CPP_FILES} main.cpp)
target_link_libraries(profiler_converter easy_profiler)
install(
TARGETS
profiler_converter
RUNTIME
DESTINATION
bin
)
set_property(TARGET profiler_converter PROPERTY INSTALL_RPATH_USE_LINK_PATH TRUE)