aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2020-11-02 13:06:55 +0100
committerRalf Habacker <ralf.habacker@freenet.de>2020-11-09 09:45:38 +0100
commit2821345eacb71222ed9acf31f193eda81daeec3f (patch)
tree27a74ed092adde7cf07aecbbcdd096a7db443cdd /cmake
parent53b1d71abe1c9d7c43eb68b91a0e94a27b948cdf (diff)
downloaddlfcn-win32-2821345eacb71222ed9acf31f193eda81daeec3f.tar.gz
dlfcn-win32-2821345eacb71222ed9acf31f193eda81daeec3f.tar.bz2
dlfcn-win32-2821345eacb71222ed9acf31f193eda81daeec3f.zip
cmake: add option ENABLE_WINE to enable support for running cross compiled tests with wine
For details about the ENABLE_WINE option, which support three modes AUTO|ON|OFF see the documentation of cmake macro check_auto_option(). A custom path for the wine executable can be specified by adding -DWINE_EXECUTABLE=<path> to the cmake command line. The cmake related macros were copied from https://gitlab.freedesktop.org/dbus/dbus/-/blob/master/cmake/modules/Macros.cmake
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/Macros.cmake32
1 files changed, 32 insertions, 0 deletions
diff --git a/cmake/modules/Macros.cmake b/cmake/modules/Macros.cmake
new file mode 100644
index 0000000..fa0f1fc
--- /dev/null
+++ b/cmake/modules/Macros.cmake
@@ -0,0 +1,32 @@
1#
2# provide option with three states AUTO, ON, OFF
3#
4macro(add_auto_option _name _text _default)
5 if(NOT DEFINED ${_name})
6 set(${_name} ${_default} CACHE STRING "${_text}" FORCE)
7 else()
8 set(${_name} ${_default} CACHE STRING "${_text}")
9 endif()
10 set_property(CACHE ${_name} PROPERTY STRINGS AUTO ON OFF)
11endmacro()
12
13#
14# Ensure that if a tristate ON/OFF/AUTO feature is set to ON,
15# its requirements have been met. Fail with a fatal error if not.
16#
17# _name: name of a variable ENABLE_FOO representing a tristate ON/OFF/AUTO feature
18# _text: human-readable description of the feature enabled by _name, for the
19# error message
20# _var: name of a variable representing a system property we checked for,
21# such as an executable that must exist for the feature enabled by _name to work
22# _vartext: what we checked for, for the error message
23#
24macro(check_auto_option _name _text _var _vartext)
25 set(_nameval ${${_name}})
26 set(_varval ${${_var}})
27 #message("debug: _name ${_name} ${_nameval} _var ${_var} ${_varval}")
28 if(_nameval AND NOT _nameval STREQUAL "AUTO" AND NOT _varval)
29 message(FATAL_ERROR "${_text} requested but ${_vartext} not found")
30 endif()
31endmacro()
32