From eb35a6a7baebb9d01cc7925b76f1b19d510e64e4 Mon Sep 17 00:00:00 2001 From: Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> Date: Mon, 6 Nov 2023 12:42:06 -0500 Subject: [PATCH] Fix test --- test/fetchcontent-integration/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fetchcontent-integration/CMakeLists.txt b/test/fetchcontent-integration/CMakeLists.txt index e638086..c7299f7 100644 --- a/test/fetchcontent-integration/CMakeLists.txt +++ b/test/fetchcontent-integration/CMakeLists.txt @@ -13,7 +13,7 @@ FetchContent_Declare( GIT_TAG ${CPPTRACE_TAG} ) FetchContent_MakeAvailable(cpptrace) -target_link_libraries(main cpptrace) +target_link_libraries(main cpptrace::cpptrace) target_compile_features(main PRIVATE cxx_std_11) if(WIN32)