mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-05 05:25:07 +00:00
do not leak tests warning into dependency
Users do not need these. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
f23474118c
commit
c663db180e
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
$<$<CXX_COMPILER_ID:MSVC>:/W4>
|
||||
$<$<NOT:$<CXX_COMPILER_ID:MSVC>>:-Wall -Wextra -Wpedantic -Wconversion>)
|
||||
foreach(test IN LISTS negative, cpp11, cpp17, apitests, noexceptiontests)
|
||||
target_compile_options(test INTERFACE
|
||||
$<$<CXX_COMPILER_ID:MSVC>:/W4>
|
||||
$<$<NOT:$<CXX_COMPILER_ID:MSVC>>:-Wall -Wextra -Wpedantic -Wconversion>)
|
||||
endforeach()
|
||||
|
||||
target_compile_options(noexceptionstests PUBLIC -fno-exceptions)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue