Files
tracy-for-unity/CMakeLists.txt
2025-11-26 14:35:58 +08:00

11 lines
476 B
CMake
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

cmake_minimum_required(VERSION 3.14)
project(TestTracy)
# 可用的选项TRACY_ENABLETRACY_ON_DEMANDTRACY_NO_BROADCASTTRACY_NO_CODE_TRANSFER , ...
# 在add_subdirectory之前设置选项
option (TRACY_ENABLE "" ON)
option (TRACY_ON_DEMAND "" ON)
add_subdirectory ("thirdparty/tracy")
#链接 `Tracy::TracyClient` 到你想要用Tracy进行性能分析的目标。
add_executable(MyProject main.cpp)
target_link_libraries (MyProject PUBLIC Tracy::TracyClient)