From fe98ab3d8648db9ad52140efdf5749011b396fd0 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 7 Aug 2025 17:55:16 +0200 Subject: [PATCH] fixup-2 --- docs/examples/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/CMakeLists.txt b/docs/examples/CMakeLists.txt index 8624b5f4a3..8f5f925e0c 100644 --- a/docs/examples/CMakeLists.txt +++ b/docs/examples/CMakeLists.txt @@ -52,9 +52,9 @@ foreach(_target IN LISTS check_PROGRAMS _all) # keep '_all' last # warning LNK4221: This object file does not define any previously undefined public symbols, # so it will not be used by any link operation that consumes this library if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.13) - set_target_properties(curl-examples-build PROPERTIES STATIC_LIBRARY_OPTIONS "-ignore:4006" "-ignore:4221") + set_target_properties(curl-examples-build PROPERTIES STATIC_LIBRARY_OPTIONS "-ignore:4006;-ignore:4221") else() - set_target_properties(curl-examples-build PROPERTIES STATIC_LIBRARY_FLAGS "-ignore:4006" "-ignore:4221") + set_target_properties(curl-examples-build PROPERTIES STATIC_LIBRARY_FLAGS "-ignore:4006;-ignore:4221") endif() endif() else()