/* GCompris - config.h * * Copyright (C) 2015 Bruno Coudoin * * Authors: * Bruno Coudoin * * 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, see . */ #ifndef GCOMPRIS_CONFIG_H #define GCOMPRIS_CONFIG_H /* Version number of package (string) */ #define VERSION "@GCOMPRIS_VERSION@" /* Version number of package (integer) */ #define VERSION_CODE @GCOMPRIS_VERSION_CODE@ /* Folder where rccs and translations are installed */ #ifdef Q_OS_MACX #define GCOMPRIS_DATA_FOLDER "../Resources" #elif Q_OS_IOS #define GCOMPRIS_DATA_FOLDER "." #else #define GCOMPRIS_DATA_FOLDER "../@_data_dest_dir@" #endif /* GCompris for android, gcompris-qt for others */ #define GCOMPRIS_APPLICATION_NAME "@GCOMPRIS_EXECUTABLE_NAME@" /* Compressed audio format */ #define COMPRESSED_AUDIO "@COMPRESSED_AUDIO@" /* Download Allowed */ #define DOWNLOAD_ALLOWED "@WITH_DOWNLOAD@" /* Date at which GCompris has been built */ #define BUILD_DATE "@BUILD_DATE@" /* Type of activation system */ #define ACTIVATION_MODE "@ACTIVATION_MODE@" #endif // GCOMPRIS_CONFIG_H