add tracy and perform some markup

This commit is contained in:
2024-03-16 16:42:23 +01:00
parent bde0f2c7c3
commit f784f91798
10 changed files with 110 additions and 5 deletions

12
external/tracy/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.24 FATAL_ERROR)
include(FetchContent)
if (NOT TARGET TracyClient)
FetchContent_Declare(tracy
GIT_REPOSITORY https://github.com/wolfpld/tracy.git
GIT_TAG v0.10
)
FetchContent_MakeAvailable(tracy)
endif()