0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-01 03:29:49 +03:00

Easyprofiler added

This commit is contained in:
Arin Alexander
2018-02-28 23:19:04 +03:00
parent edb89544f8
commit 6ad35d63be
218 changed files with 36639 additions and 17 deletions

View File

@@ -0,0 +1,16 @@
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)