3480988f53
- CC0-1.0 for the uninteresting version-headers - GPL-3.0-or-later for the services - add SPDX identifiers to Calamares C++ libraries and application sources - add SPDX identifiers to Calamares QML (panels and slideshow) - the `qmldir` is a list of names of things in the directory, so CC0-1.0 it as "uninteresting" - QRC files are lists of names of things in the directory, so CC0-1.0 them as well
17 lines
465 B
C
17 lines
465 B
C
// SPDX-FileCopyrightText: no
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
//
|
|
// Same as CalamaresVersion.h, but with a full-git-extended VERSION
|
|
// rather than the short (vM.m.p) semantic version.
|
|
#ifndef CALAMARES_VERSION_H
|
|
|
|
// On purpose, do not define the guard, but let CalamaresVersion.h do it
|
|
// #define CALAMARES_VERSION_H
|
|
|
|
#include "CalamaresVersion.h"
|
|
|
|
#undef CALAMARES_VERSION
|
|
#cmakedefine CALAMARES_VERSION "${CALAMARES_VERSION}"
|
|
|
|
#endif // CALAMARES_VERSION_H
|