mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Mark known feature variables as used
Some features, such as the Fortran wrappers, are enabled by options, and it may be usable to have those set in a common definition file. However, as these features are included conditionally based on use, their option variables may not exist in other projects, giving a CMake warning for them. Here we list such variables too. Reading them at the end corresponds to the Autotools convention of ignoring unknown --enable-xxx options.
This commit is contained in:
parent
fd781af125
commit
5d5e18c2ce
@ -1,6 +1,13 @@
|
|||||||
# -*- mode: cmake; tab-width: 2; indent-tabs-mode: t; truncate-lines: t; compile-command: "cmake -Wdev" -*-
|
# -*- mode: cmake; tab-width: 2; indent-tabs-mode: t; truncate-lines: t; compile-command: "cmake -Wdev" -*-
|
||||||
# vim: set filetype=cmake autoindent tabstop=2 shiftwidth=2 noexpandtab softtabstop=2 nowrap:
|
# vim: set filetype=cmake autoindent tabstop=2 shiftwidth=2 noexpandtab softtabstop=2 nowrap:
|
||||||
|
|
||||||
|
# features that may be used by some packages (Fortran wrappers
|
||||||
|
# for instance), and this set options for, but which is included
|
||||||
|
# conditionally and thus does not exist in other packages
|
||||||
|
set (FEATURE_VARS
|
||||||
|
USE_UNDERSCORING
|
||||||
|
)
|
||||||
|
|
||||||
# emulate the with-xxx feature of autotools to not give warnings
|
# emulate the with-xxx feature of autotools to not give warnings
|
||||||
# if we specify the directories of packages that are known to the
|
# if we specify the directories of packages that are known to the
|
||||||
# family but not necessarily used
|
# family but not necessarily used
|
||||||
@ -45,3 +52,7 @@ foreach (family IN ITEMS ${KNOWN_FAMILIES})
|
|||||||
endforeach (var)
|
endforeach (var)
|
||||||
endforeach (package)
|
endforeach (package)
|
||||||
endforeach (family)
|
endforeach (family)
|
||||||
|
|
||||||
|
foreach (feature IN ITEMS ${FEATURE_VARS})
|
||||||
|
set (_dummy ${${feature}})
|
||||||
|
endforeach (feature)
|
||||||
|
Loading…
Reference in New Issue
Block a user