0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-26 16:11:02 +08:00

Add a EASY_PROFILER_NO_GUI option

This commit is contained in:
devnoname120 2018-01-14 14:50:36 +01:00
parent 647eced7d2
commit 963ecfc518

View File

@ -26,7 +26,9 @@ endmacro()
SET(CMAKE_INSTALL_RPATH "$ORIGIN") SET(CMAKE_INSTALL_RPATH "$ORIGIN")
add_subdirectory(easy_profiler_core) add_subdirectory(easy_profiler_core)
add_subdirectory(profiler_gui) if (NOT EASY_PROFILER_NO_GUI)
add_subdirectory(profiler_gui)
endif()
add_subdirectory(easy_profiler_converter) add_subdirectory(easy_profiler_converter)
if (NOT EASY_PROFILER_NO_SAMPLES) if (NOT EASY_PROFILER_NO_SAMPLES)