Add tracy dependency

This commit is contained in:
2021-07-30 22:42:33 +02:00
parent d90107601a
commit f34f7a659d
3 changed files with 13 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ add_subdirectory(pugixml)
add_subdirectory(stb)
add_subdirectory(eigen)
add_subdirectory(utfcpp)
add_subdirectory(tracy)
if (NOT LINUX)
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/deps)

11
3rdParty/tracy/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,11 @@
include(FetchContent)
FetchContent_Declare (
tracy
EXCLUDE_FROM_ALL
GIT_REPOSITORY https://github.com/wolfpld/tracy.git
GIT_TAG master
GIT_SHALLOW TRUE
GIT_PROGRESS TRUE
)
FetchContent_MakeAvailable (tracy)