42 lines
1.6 KiB
C
42 lines
1.6 KiB
C
/*
|
|
*
|
|
* Singe 3
|
|
* Copyright (C) 2006-2026 Scott Duensing <scott@kangaroopunch.com>
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
|
|
// ===== THIS FILE IS AUTOMATICALLY GENERATED FROM version.h.in - DO NOT EDIT =====
|
|
// The version number lives in the project() line of CMakeLists.txt.
|
|
|
|
// SINGE_VERSION is a number, because scripts are handed it as one, and it is the major and minor
|
|
// alone: a beta of 3.00 is still 3.00 to anything doing arithmetic. VERSION_STRING is what
|
|
// people and the master service see, and it says which beta: "v3.00b2".
|
|
#define SINGE_VERSION @PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@
|
|
#define SINGE_VERSION_MAJOR @PROJECT_VERSION_MAJOR@
|
|
#define SINGE_VERSION_MINOR @PROJECT_VERSION_MINOR@
|
|
#define SINGE_VERSION_BETA @PROJECT_VERSION_TWEAK@ // 0 unless this is a beta
|
|
#define VERSION_STRING "v@SINGE_VERSION_FULL@"
|
|
#define COPYRIGHT_END_YEAR "@SINGE_COPYRIGHT_END_YEAR@"
|
|
|
|
|
|
#endif // VERSION_H
|