0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-27 08:41:02 +08:00
easy_profiler/reader/CMakeLists.txt

18 lines
236 B
CMake
Raw Normal View History

2016-02-24 06:30:13 +03:00
project(profiler_reader)
set(CPP_FILES
main.cpp
)
set(SOURCES
${CPP_FILES}
)
add_executable(${PROJECT_NAME} ${SOURCES})
if(UNIX)
2016-06-19 22:30:17 +03:00
set(SPEC_LIB pthread)
2016-02-24 06:30:13 +03:00
endif(UNIX)
2016-06-22 23:58:41 +03:00
target_link_libraries(${PROJECT_NAME} easy_profiler ${SPEC_LIB})