Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoneybunch <amt3824@g.rit.edu>2022-01-13 01:59:04 +0300
committerHoneybunch <amt3824@g.rit.edu>2022-01-13 01:59:04 +0300
commit12b0631f28729f22c0c7e700025cd77b86fa8bcb (patch)
tree23c74ef5055f40235a7585a8a58e7820417c2e30 /CMakeLists.txt
parenta7fbfba27dd9e91bd5274348a4fdfe5029105a83 (diff)
parentfd4f458e3d78978fbf3bc38ccc0518d927b1d71e (diff)
Merge branch 'master' of https://github.com/wolfpld/tracy
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a1d81ff0..1cb09bda 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,7 +6,7 @@ find_package(Threads REQUIRED)
add_library(TracyClient TracyClient.cpp)
target_compile_features(TracyClient PUBLIC cxx_std_11)
-target_include_directories(TracyClient PUBLIC
+target_include_directories(TracyClient SYSTEM PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<INSTALL_INTERFACE:include>)
target_link_libraries(
@@ -42,7 +42,7 @@ set_option(TRACY_NO_CODE_TRANSFER "Disable collection of source code" OFF)
set_option(TRACY_NO_CONTEXT_SWITCH "Disable capture of context switches" OFF)
set_option(TRACY_NO_EXIT "Client executable does not exit until all profile data is sent to server" OFF)
set_option(TRACY_NO_FRAME_IMAGE "Disable capture of frame images" OFF)
-set_option(TRACE_NO_SAMPLING "Disable call stack sampling" OFF)
+set_option(TRACY_NO_SAMPLING "Disable call stack sampling" OFF)
set_option(TRACY_NO_VERIFY "Disable zone validation for C API" OFF)
set_option(TRACY_NO_VSYNC_CAPTURE "Disable capture of hardware Vsync events" OFF)
@@ -113,4 +113,4 @@ install(FILES ${common_includes}
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/common)
install(EXPORT TracyConfig
FILE TracyConfig.cmake
- DESTINATION share/Tracy) \ No newline at end of file
+ DESTINATION share/Tracy)