mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-20 11:48:25 -06:00
12 lines
372 B
CMake
12 lines
372 B
CMake
# - Turn on warnings when compiling
|
|
|
|
include (AddOptions)
|
|
if (CMAKE_COMPILER_IS_GNUCXX)
|
|
# default warnings flags, if not set by user
|
|
set_default_option (_warn_flag "-Wall" "(^|\ )-W")
|
|
if (_warn_flag)
|
|
message (STATUS "All warnings enabled: ${_warn_flag}")
|
|
add_options (ALL_LANGUAGES ALL_BUILDS "${_warn_flag}")
|
|
endif (_warn_flag)
|
|
endif (CMAKE_COMPILER_IS_GNUCXX)
|