mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2025-08-10 14:09:48 +00:00
55 lines
2 KiB
C
55 lines
2 KiB
C
/* Copyright 2015, 2016, Michele Santullo
|
|
* This file is part of "dindexer".
|
|
*
|
|
* "dindexer" 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.
|
|
*
|
|
* "dindexer" 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 "dindexer". If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef id48D6E1D45238460F99C2BCBFDE920791
|
|
#define id48D6E1D45238460F99C2BCBFDE920791
|
|
|
|
#include "helpers/cmake_on_off.h"
|
|
|
|
#define PROGRAM_NAME "@bare_name@"
|
|
#define VERSION_MAJOR @PROJECT_VERSION_MAJOR@
|
|
#define VERSION_MINOR @PROJECT_VERSION_MINOR@
|
|
#define VERSION_BETA @PROJECT_VERSION_BETA@
|
|
#define VERSION_PATCH @PROJECT_VERSION_PATCH@
|
|
#define CONFIG_FILE_PATH "@DINDEXER_CONFIG_FILE@"
|
|
#define ACTIONS_SEARCH_PATH "@DINDEXER_ACTIONS_PATH@"
|
|
#define ACTION_PREFIX "@bare_name@-"
|
|
#define DB_OWNER_NAME "@DB_OWNER_NAME@"
|
|
|
|
#if defined(NDEBUG)
|
|
# define CMAKE_CXX_FLAGS "@CMAKE_CXX_FLAGS_RELEASE@"
|
|
# define CMAKE_C_FLAGS "@CMAKE_C_FLAGS_RELEASE@"
|
|
#else
|
|
# define CMAKE_CXX_FLAGS "@CMAKE_CXX_FLAGS_DEBUG@"
|
|
# define CMAKE_C_FLAGS "@CMAKE_C_FLAGS_DEBUG@"
|
|
#endif
|
|
#define CMAKE_SYSTEM "@CMAKE_SYSTEM@"
|
|
#define CMAKE_CXX_COMPILER "@CMAKE_CXX_COMPILER@"
|
|
#define CMAKE_CXX_COMPILER_VERSION "@CMAKE_CXX_COMPILER_VERSION@"
|
|
#define CMAKE_CXX_COMPILER_ID "@CMAKE_CXX_COMPILER_ID@"
|
|
#define CMAKE_C_COMPILER "@CMAKE_C_COMPILER@"
|
|
#define CMAKE_C_COMPILER_VERSION "@CMAKE_C_COMPILER_VERSION@"
|
|
#define CMAKE_C_COMPILER_ID "@CMAKE_C_COMPILER_ID@"
|
|
#define CMAKE_VERSION "@CMAKE_VERSION@"
|
|
|
|
#if CMAKE_@DINDEXER_WITH_NICE_MEDIA_TYPES@
|
|
# define WITH_NICE_MEDIA_TYPES
|
|
#endif
|
|
|
|
#define COPYRIGHT_YEARS_LIST @DINDEXER_COPYRIGHT_YEARS@
|
|
|
|
#endif
|