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:
authorTimo Suoranta <tksuoran@gmail.com>2021-04-15 09:58:25 +0300
committerBartosz Taudul <wolf@nereid.pl>2021-05-30 13:45:16 +0300
commit629b6d88bb91e00c25c1e2b50642d4bd2b4f7c11 (patch)
treee6a65129c246baa7e2af81f735ebe147b4823ef7 /CMakeLists.txt
parente606c75695aa4c27328f3b466f7ccd4c27003601 (diff)
Provide CMake TracyClient header only library
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 00000000..2189e11d
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,4 @@
+cmake_minimum_required(VERSION 3.10)
+project(TracyClient LANGUAGES CXX)
+add_library(TracyClient INTERFACE)
+target_include_directories(TracyClient INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})