From c28350eca68e3578ed5ef0068ff389d26c9d1cdb Mon Sep 17 00:00:00 2001 From: Jeongseok Lee Date: Thu, 4 Apr 2024 19:35:03 -0700 Subject: [PATCH] [tracy] Fix incorrect target name --- cmake/DARTFindDependencies.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/DARTFindDependencies.cmake b/cmake/DARTFindDependencies.cmake index 51071ce08504c..9e631d3a35aa2 100644 --- a/cmake/DARTFindDependencies.cmake +++ b/cmake/DARTFindDependencies.cmake @@ -120,7 +120,7 @@ if(DART_BUILD_PROFILE) ) FetchContent_MakeAvailable(tracy) if(MSVC) - target_compile_options(external_lib_target PRIVATE /W0) + target_compile_options(TracyClient PRIVATE /W0) else() target_compile_options(TracyClient PRIVATE -w) endif()