38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
/*
|
|
*
|
|
* Singe 2
|
|
* Copyright (C) 2006-@SINGE_COPYRIGHT_END_YEAR@ 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.
|
|
|
|
#define SINGE_VERSION @PROJECT_VERSION@
|
|
#define SINGE_VERSION_MAJOR @PROJECT_VERSION_MAJOR@
|
|
#define SINGE_VERSION_MINOR @PROJECT_VERSION_MINOR@
|
|
#define VERSION_STRING "v@PROJECT_VERSION@"
|
|
#define COPYRIGHT_END_YEAR "@SINGE_COPYRIGHT_END_YEAR@"
|
|
|
|
|
|
#endif // VERSION_H
|