File: AddOptions.cmake

package info (click to toggle)
opm-common 2022.10%2Bds-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 78,468 kB
  • sloc: cpp: 164,554; python: 2,872; sh: 216; xml: 174; ansic: 149; pascal: 136; makefile: 12
file content (102 lines) | stat: -rw-r--r-- 3,926 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# - 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"))
	  # if we want everything in the "global" flag, then simply
	  # ignore the build type here and go add everything to that one
	  if (CMAKE_NOT_USING_CONFIG_FLAGS)
		set (_bld "")
	  endif ()
	  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)
		# we need to strip this one as well, so they are comparable
		string (STRIP "${${_var}}" _stripped)
		# if it wasn't there, then add it at the end
		if ("${_without}" STREQUAL "${_stripped}")
		  # don't add any extra spaces if no options yet are set
		  if (NOT ${_stripped} STREQUAL "")
			set (${_var} "${_stripped} ${_opt}")
		  else (NOT ${_stripped} STREQUAL "")
			set (${_var} "${_opt}")
		  endif (NOT ${_stripped} STREQUAL "")
		  set (${_var} "${${_var}}" PARENT_SCOPE)
		endif ("${_without}" STREQUAL "${_stripped}")
	  endforeach (_opt)
	endforeach (build)
  endforeach (lang)
endfunction (add_options lang build)

# set varname to flag unless user has specified something that matches regex
function (set_default_option lang varname flag regex)
  # lang is either C, CXX or Fortran
  if ("${lang}" STREQUAL "Fortran")
	set (letter "F")
  else ()
	set (letter "${lang}")
  endif ()
  string (TOUPPER "${CMAKE_BUILD_TYPE}" _build)
  if ((NOT ("$ENV{${letter}FLAGS}" MATCHES "${regex}"))
	  AND (NOT ("${CMAKE_${lang}_FLAGS}" MATCHES "${regex}"))
	  AND (NOT ("${CMAKE_${lang}_FLAGS_${_build}}" MATCHES "${regex}")))
	set (${varname} ${flag} PARENT_SCOPE)
  else ()
	set (${varname} PARENT_SCOPE)
  endif ()
endfunction (set_default_option)

# clear default options as a proxy for not using any default options
# at all. there is one *huge* problem with this: CMake runs the platform
# initialization before executing any line at all in the project and
# there seems to be no way to disable that behaviour, so we cannot really
# distinguish between a platform default and something that the user has
# passed on the command line. the best thing we can do is to all user-
# defined setting if they are something other than the platform default.
macro (no_default_options)
  foreach (lang IN ITEMS C CXX Fortran)
	foreach (build IN ITEMS DEBUG RELEASE MINSIZEREL RELWITHDEBINFO)
	  if ("${CMAKE_${lang}_FLAGS_${build}}" STREQUAL "${CMAKE_${lang}_FLAGS_${build}_INIT}")
		# for some strange reason we cannot clear this flag, only set it to empty
		set (CMAKE_${lang}_FLAGS_${build} "")
	  endif ()
	endforeach (build)
  endforeach (lang)
endmacro (no_default_options)