0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-26 16:11:02 +08:00
easy_profiler/reader/CMakeLists.txt
Sergey Yagovtsev c09d928393 linux build
2016-06-19 22:28:17 +03:00

20 lines
297 B
CMake

project(profiler_reader)
set(CPP_FILES
main.cpp
)
set(SOURCES
${CPP_FILES}
)
add_definitions(
#-DFULL_DISABLE_PROFILER
)
add_executable(${PROJECT_NAME} ${SOURCES})
if(UNIX)
set(SPEC_LIB pthread shared_allocator)
endif(UNIX)
target_link_libraries(${PROJECT_NAME} easy_profiler ${SPEC_LIB})