blob: b05d65e2c09c409514d4167b8d6669afeecbc4bf (
plain)
1
2
3
4
5
6
7
8
|
enable_language(CXX)
include(WarningAsErrorOptions.cmake)
get_warning_options(warning_options)
add_executable(WerrorOff warn.cxx)
target_compile_options(WerrorOff PUBLIC "${warning_options}")
set_target_properties(WerrorOff PROPERTIES COMPILE_WARNING_AS_ERROR OFF)
|