f0921a41b2
Honor SYSCONFDIR as specified by CMake arguments instead of using a hard-coded path. Since GNUInstallDirs set CMAKE_INSTALL_FULL_SYSCONFDIR to CMAKE_INSTALL_PREFIX/etc we need to change the default ourselves.
15 lines
571 B
C
15 lines
571 B
C
#ifndef CALAMARESCONFIG_H
|
|
#define CALAMARESCONFIG_H
|
|
|
|
#define CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}"
|
|
#define CMAKE_INSTALL_FULL_LIBEXECDIR "${CMAKE_INSTALL_FULL_LIBEXECDIR}"
|
|
#define CMAKE_INSTALL_LIBDIR "${CMAKE_INSTALL_LIBDIR}"
|
|
#define CMAKE_INSTALL_FULL_LIBDIR "${CMAKE_INSTALL_FULL_LIBDIR}"
|
|
#define CMAKE_INSTALL_FULL_DATADIR "${CMAKE_INSTALL_FULL_DATADIR}/calamares"
|
|
#define CMAKE_INSTALL_FULL_SYSCONFDIR "${CMAKE_INSTALL_FULL_SYSCONFDIR}"
|
|
|
|
//cmakedefines for CMake variables (e.g. for optdepends) go here
|
|
#cmakedefine WITH_PYTHON
|
|
|
|
#endif // CALAMARESCONFIG_H
|