From 01385f4f336a5b17978dc71c2ce0ec2850617abc Mon Sep 17 00:00:00 2001 From: George Constantinides Date: Sat, 18 Nov 2023 08:13:30 +0000 Subject: [PATCH] Update test_cmake.csp (#1856) _test not needed for submodule target_link_libraries since it was added in project --- drogon_ctl/templates/test_cmake.csp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drogon_ctl/templates/test_cmake.csp b/drogon_ctl/templates/test_cmake.csp index 9c7b98a6..a5b4336d 100644 --- a/drogon_ctl/templates/test_cmake.csp +++ b/drogon_ctl/templates/test_cmake.csp @@ -6,9 +6,9 @@ add_executable(${PROJECT_NAME} test_main.cc) # ############################################################################## # If you include the drogon source code locally in your project, use this method # to add drogon -# target_link_libraries(${PROJECT_NAME}_test PRIVATE drogon) +# target_link_libraries(${PROJECT_NAME} PRIVATE drogon) # # and comment out the following lines target_link_libraries(${PROJECT_NAME} PRIVATE Drogon::Drogon) -ParseAndAddDrogonTests(${PROJECT_NAME}) \ No newline at end of file +ParseAndAddDrogonTests(${PROJECT_NAME})