60 lines
2.0 KiB
CMake
60 lines
2.0 KiB
CMake
|
# - Add options without repeating them on the command line
|
||
|
#
|
||
|
# Synopsis:
|
||
|
#
|
||
|
# add_options (lang build opts)
|
||
|
#
|
||
|
# where:
|
||
|
#
|
||
|
# lang Name of the language whose compiler should receive the
|
||
|
# options, e.g. CXX. If a comma-separated list is received
|
||
|
# then the option is added for all those languages. Use the
|
||
|
# special value ALL_LANGUAGES for these languages: CXX, C
|
||
|
# and Fortran
|
||
|
#
|
||
|
# build Kind of build to which this options should apply,
|
||
|
# such as DEBUG and RELEASE. This can also be a comma-
|
||
|
# separated list. Use the special value ALL_BUILDS to apply
|
||
|
# to all builds.
|
||
|
#
|
||
|
# opts List of options to add. Each should be quoted.
|
||
|
#
|
||
|
# Example:
|
||
|
#
|
||
|
# add_options (CXX RELEASE "-O3" "-DNDEBUG" "-Wall")
|
||
|
|
||
|
function (add_options langs builds)
|
||
|
# special handling of empty language specification
|
||
|
if ("${langs}" STREQUAL "ALL_LANGUAGES")
|
||
|
set (langs CXX C Fortran)
|
||
|
endif ("${langs}" STREQUAL "ALL_LANGUAGES")
|
||
|
foreach (lang IN LISTS langs)
|
||
|
# prepend underscore if necessary
|
||
|
foreach (build IN LISTS builds)
|
||
|
if (NOT ("${build}" STREQUAL "ALL_BUILDS"))
|
||
|
set (_bld "_${build}")
|
||
|
string (TOUPPER "${_bld}" _bld)
|
||
|
else (NOT ("${build}" STREQUAL "ALL_BUILDS"))
|
||
|
set (_bld "")
|
||
|
endif (NOT ("${build}" STREQUAL "ALL_BUILDS"))
|
||
|
foreach (_opt IN LISTS ARGN)
|
||
|
set (_var "CMAKE_${lang}_FLAGS${_bld}")
|
||
|
#message (STATUS "Adding \"${_opt}\" to \${${_var}}")
|
||
|
# remove it first
|
||
|
string (REPLACE "${_opt}" "" _without "${${_var}}")
|
||
|
string (STRIP "${_without}" _without)
|
||
|
# if it wasn't there, then add it at the end
|
||
|
if ("${_without}" STREQUAL "${${_var}}")
|
||
|
# don't add any extra spaces if no options yet are set
|
||
|
if (NOT ${${_var}} STREQUAL "")
|
||
|
set (${_var} "${${_var}} ${_opt}")
|
||
|
else (NOT ${${_var}} STREQUAL "")
|
||
|
set (${_var} "${_opt}")
|
||
|
endif (NOT ${${_var}} STREQUAL "")
|
||
|
set (${_var} "${${_var}}" PARENT_SCOPE)
|
||
|
endif ("${_without}" STREQUAL "${${_var}}")
|
||
|
endforeach (_opt)
|
||
|
endforeach (build)
|
||
|
endforeach (lang)
|
||
|
endfunction (add_options lang build)
|