mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-05 05:25:07 +00:00
Tests: use add_compile_options() to add warnings to tests
This commit is contained in:
parent
6be08bbea1
commit
cd191b6c45
1 changed files with 8 additions and 6 deletions
|
@ -6,6 +6,14 @@ add_library(${PROJECT_NAME} INTERFACE)
|
|||
|
||||
include_directories("${PROJECT_SOURCE_DIR}/../source")
|
||||
|
||||
if (MSVC)
|
||||
# warning level 4
|
||||
add_compile_options(/W4)
|
||||
else()
|
||||
# additional warnings
|
||||
add_compile_options(-Wall -Wextra -Wpedantic -Wconversion)
|
||||
endif()
|
||||
|
||||
add_executable(negative negative.cpp)
|
||||
add_executable(cpp11 test_cpp11.cpp)
|
||||
add_executable(cpp17 test_cpp17.cpp)
|
||||
|
@ -14,12 +22,6 @@ add_executable(apitests apitests.cpp)
|
|||
|
||||
add_executable(noexceptionstests noexceptionstests.cpp)
|
||||
|
||||
|
||||
|
||||
target_compile_options(${PROJECT_NAME} INTERFACE
|
||||
$<$<CXX_COMPILER_ID:MSVC>:/W4>
|
||||
$<$<NOT:$<CXX_COMPILER_ID:MSVC>>:-Wall -Wextra -Wpedantic -Wconversion>)
|
||||
|
||||
target_compile_options(noexceptionstests PUBLIC -fno-exceptions)
|
||||
|
||||
set_target_properties(negative apitests noexceptionstests
|
||||
|
|
Loading…
Add table
Reference in a new issue