mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 13:51:33 -06:00
Tests/Module/WCDH: only use -Werror=undef compiler flag if actually supported
This commit is contained in:
@@ -68,7 +68,11 @@ if (CMAKE_C_COMPILE_FEATURES)
|
||||
|
||||
add_executable(C_undefined c_undefined.c)
|
||||
set_property(TARGET C_undefined PROPERTY C_STANDARD 90)
|
||||
target_compile_options(C_undefined PRIVATE -Werror=undef)
|
||||
include(CheckCCompilerFlag)
|
||||
check_c_compiler_flag(-Werror=undef use_error_undef)
|
||||
if (use_error_undef)
|
||||
target_compile_options(C_undefined PRIVATE -Werror=undef)
|
||||
endif()
|
||||
|
||||
add_executable(WriteCompilerDetectionHeader_C main.c)
|
||||
set_property(TARGET WriteCompilerDetectionHeader_C PROPERTY C_STANDARD 90)
|
||||
|
||||
Reference in New Issue
Block a user