Provide CMake TracyClient header only library

This commit is contained in:
Timo Suoranta 2021-04-15 09:58:25 +03:00 committed by Bartosz Taudul
parent e606c75695
commit 629b6d88bb
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

4
CMakeLists.txt Normal file
View File

@ -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})