- point to main Calamares site in the 'part of' headers instead of to github (this is the "this file is part of Calamares" opening line for most files). - remove boilerplate from all source files, CMake modules and completions, this is the 3-paragraph summary of the GPL-3.0-or-later, which has a meaning entirely covered by the SPDX tag.
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
#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}"
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
#cmakedefine WITH_PYTHON
|
|
#cmakedefine WITH_PYTHONQT
|
|
#cmakedefine WITH_QML
|
|
|
|
#endif // CALAMARESCONFIG_H
|