mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-27 00:31:02 +08:00
26 lines
528 B
CMake
26 lines
528 B
CMake
project(profiler_sample)
|
|
|
|
set(CPP_FILES
|
|
main.cpp
|
|
)
|
|
|
|
set(SOURCES
|
|
${CPP_FILES}
|
|
)
|
|
|
|
add_executable(${PROJECT_NAME} ${SOURCES})
|
|
|
|
set(DISABLED_PROFILER_NAME
|
|
"${PROJECT_NAME}_disabled_profiler"
|
|
)
|
|
add_executable(${DISABLED_PROFILER_NAME} ${SOURCES})
|
|
|
|
if(UNIX)
|
|
set(SPEC_LIB pthread)
|
|
endif(UNIX)
|
|
|
|
target_link_libraries(${PROJECT_NAME} easy_profiler ${SPEC_LIB})
|
|
target_link_libraries(${DISABLED_PROFILER_NAME} easy_profiler ${SPEC_LIB})
|
|
|
|
target_compile_definitions(${DISABLED_PROFILER_NAME} PRIVATE FULL_DISABLE_PROFILER)
|