]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
cmake: drop unused internal variable
authorViktor Szakats <commit@vsz.me>
Fri, 2 Aug 2024 22:23:11 +0000 (00:23 +0200)
committerViktor Szakats <commit@vsz.me>
Sat, 3 Aug 2024 07:22:26 +0000 (09:22 +0200)
Closes #14361

tests/server/CMakeLists.txt

index b84a0498aeb1bad4d6f9303762f5640904d9b839..8f52fd4434102eb2c6e6390abf22acb18e7b2b56 100644 (file)
@@ -30,7 +30,6 @@ endif()
 function(SETUP_EXECUTABLE TEST_NAME)  # ARGN are the files in the test
   add_executable(${TEST_NAME} EXCLUDE_FROM_ALL ${ARGN})
   add_dependencies(testdeps ${TEST_NAME})
-  string(TOUPPER ${TEST_NAME} UPPER_TEST_NAME)
 
   include_directories(
     ${CURL_SOURCE_DIR}/lib      # for "curl_setup_once.h"
@@ -51,7 +50,7 @@ function(SETUP_EXECUTABLE TEST_NAME)  # ARGN are the files in the test
   # files on Win32 targets it is necessary to build the test servers
   # with CURL_STATICLIB defined, independently of how libcurl is built.
   set_target_properties(${TEST_NAME} PROPERTIES
-    COMPILE_DEFINITIONS CURL_STATICLIB)  # ${UPPER_TEST_NAME}
+    COMPILE_DEFINITIONS CURL_STATICLIB)
   set_target_properties(${TEST_NAME} PROPERTIES
     PROJECT_LABEL "${TARGET_LABEL_PREFIX}${TEST_NAME}")
 endfunction()