0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-26 17:38:09 +03:00
LimeReport/3rdparty/easyprofiler/sample/CMakeLists.txt

17 lines
429 B
CMake
Raw Normal View History

2018-02-28 23:19:04 +03:00
set(CPP_FILES
main.cpp
)
set(SOURCES
${CPP_FILES}
)
link_directories(${CMAKE_SOURCE_DIR}/../bin)
add_executable(profiler_sample ${SOURCES})
target_link_libraries(profiler_sample easy_profiler)
add_executable(profiler_sample_disabled_profiler ${SOURCES})
target_link_libraries(profiler_sample_disabled_profiler easy_profiler)
target_compile_definitions(profiler_sample_disabled_profiler PRIVATE DISABLE_EASY_PROFILER)