Add -Wno-missing-field-initializers to COMPILE_FLAGS property on test source files
Signed-off-by: Jeroen Koekkoek <jeroen@koekkoek.nl>
This commit is contained in:
parent
599bf311cf
commit
6171d44b62
1 changed files with 10 additions and 0 deletions
|
@ -224,6 +224,16 @@ function(add_cunit_executable TARGET)
|
||||||
PROPERTY COMPILE_DEFINITIONS CU_THEORY_INCLUDE_FILE=\"${header}\")
|
PROPERTY COMPILE_DEFINITIONS CU_THEORY_INCLUDE_FILE=\"${header}\")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Disable missing-field-initializers warnings as not having to specify
|
||||||
|
# every member, aka fixture, is intended behavior.
|
||||||
|
if(${CMAKE_C_COMPILER_ID} STREQUAL "Clang" OR
|
||||||
|
${CMAKE_C_COMPILER_ID} STREQUAL "AppleClang" OR
|
||||||
|
${CMAKE_C_COMPILER_ID} STREQUAL "GNU")
|
||||||
|
set_property(
|
||||||
|
SOURCE "${source}"
|
||||||
|
PROPERTY COMPILE_FLAGS -Wno-missing-field-initializers)
|
||||||
|
endif()
|
||||||
|
|
||||||
foreach(suite ${suites})
|
foreach(suite ${suites})
|
||||||
string(REPLACE ":" ";" suite ${suite})
|
string(REPLACE ":" ";" suite ${suite})
|
||||||
list(GET suite 2 clean)
|
list(GET suite 2 clean)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue