From c663db180ed2888217c7a9ea5e81ee6962ea9c6f Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 12 Aug 2023 15:50:06 -0700 Subject: [PATCH] do not leak tests warning into dependency Users do not need these. Signed-off-by: Rosen Penev --- tests/CMakeLists.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f3ce258..c1c7fa2 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -11,9 +11,11 @@ target_link_libraries(cpp17 PRIVATE utf8::cpp) target_link_libraries(apitests PRIVATE utf8::cpp) target_link_libraries(noexceptionstests PRIVATE utf8::cpp) -target_compile_options(${PROJECT_NAME} INTERFACE - $<$:/W4> - $<$>:-Wall -Wextra -Wpedantic -Wconversion>) +foreach(test IN LISTS negative, cpp11, cpp17, apitests, noexceptiontests) + target_compile_options(test INTERFACE + $<$:/W4> + $<$>:-Wall -Wextra -Wpedantic -Wconversion>) +endforeach() target_compile_options(noexceptionstests PUBLIC -fno-exceptions)