2020-05-30 16:15:03 +02:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
2020-06-10 11:51:53 +02:00
|
|
|
*
|
2020-05-30 16:15:03 +02:00
|
|
|
* SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
|
|
*
|
|
|
|
* Calamares is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Calamares is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
* License-Filename: LICENSE
|
|
|
|
*
|
|
|
|
*/
|
2014-06-26 14:18:32 +02:00
|
|
|
#ifndef CALAMARESCONFIG_H
|
|
|
|
#define CALAMARESCONFIG_H
|
2014-06-04 16:35:26 +02:00
|
|
|
|
|
|
|
#define CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}"
|
|
|
|
#define CMAKE_INSTALL_FULL_LIBEXECDIR "${CMAKE_INSTALL_FULL_LIBEXECDIR}"
|
|
|
|
#define CMAKE_INSTALL_LIBDIR "${CMAKE_INSTALL_LIBDIR}"
|
2014-06-24 13:35:21 +02:00
|
|
|
#define CMAKE_INSTALL_FULL_LIBDIR "${CMAKE_INSTALL_FULL_LIBDIR}"
|
2014-06-13 17:05:21 +02:00
|
|
|
#define CMAKE_INSTALL_FULL_DATADIR "${CMAKE_INSTALL_FULL_DATADIR}/calamares"
|
2014-08-20 01:45:21 +02:00
|
|
|
#define CMAKE_INSTALL_FULL_SYSCONFDIR "${CMAKE_INSTALL_FULL_SYSCONFDIR}"
|
2014-06-04 16:35:26 +02:00
|
|
|
|
2020-06-10 11:51:53 +02:00
|
|
|
/*
|
|
|
|
* These are feature-settings that affect consumers of Calamares
|
|
|
|
* libraries as well; without Python-support in the libs, for instance,
|
|
|
|
* there's no point in having a Python plugin.
|
|
|
|
*
|
|
|
|
* This list should match the one in CalamaresConfig.cmake
|
|
|
|
* which is the CMake-time side of the same configuration.
|
|
|
|
*/
|
2014-07-16 16:07:32 +02:00
|
|
|
#cmakedefine WITH_PYTHON
|
2016-10-02 17:02:55 +02:00
|
|
|
#cmakedefine WITH_PYTHONQT
|
2020-05-14 15:54:19 +02:00
|
|
|
#cmakedefine WITH_QML
|
2014-06-04 16:35:26 +02:00
|
|
|
|
2019-08-07 23:43:45 +02:00
|
|
|
#endif // CALAMARESCONFIG_H
|