mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 20:40:07 +01:00
See http://www.cmake.org for more informations. Currently only unix will be buildable because some win32 required files are still missing.
5 lines
166 B
CMake
5 lines
166 B
CMake
|
|
MACRO (MACRO_GETENV_WIN_PATH var name)
|
|
set(${var} $ENV{${name}})
|
|
STRING(REGEX REPLACE "\\\\" "/" ${var} "${${var}}")
|
|
ENDMACRO (MACRO_GETENV_WIN_PATH var name)
|