11 lines
255 B
CMake
11 lines
255 B
CMake
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) |