Warning, /education/gcompris/src/core/config.h.in is written in an unsupported language. File is not indexed.

0001 /* GCompris - config.h
0002  *
0003  * SPDX-FileCopyrightText: 2015 Bruno Coudoin <bruno.coudoin@gcompris.net>
0004  *
0005  * Authors:
0006  *   Bruno Coudoin <bruno.coudoin@gcompris.net>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 #ifndef GCOMPRIS_CONFIG_H
0011 #define GCOMPRIS_CONFIG_H
0012 
0013 #include <qglobal.h>
0014 /* Version number of package (string) */
0015 #define VERSION "@GCOMPRIS_VERSION@"
0016 /* Version number of package (integer) */
0017 #define VERSION_CODE @GCOMPRIS_VERSION_CODE@
0018 
0019 /* Folder where rccs and translations are installed */
0020 #ifdef  Q_OS_MACX
0021 #define GCOMPRIS_DATA_FOLDER "../Resources"
0022 #elif  Q_OS_IOS
0023 #define GCOMPRIS_DATA_FOLDER "."
0024 #else
0025 #define GCOMPRIS_DATA_FOLDER "../@_data_dest_dir@"
0026 #endif
0027 /* GCompris for android, gcompris-qt for others */
0028 #define GCOMPRIS_APPLICATION_NAME "@GCOMPRIS_EXECUTABLE_NAME@"
0029 /* Compressed audio format */
0030 #define COMPRESSED_AUDIO "@COMPRESSED_AUDIO@"
0031 /* Download Allowed */
0032 #define DOWNLOAD_ALLOWED "@WITH_DOWNLOAD@"
0033 /* Date at which GCompris has been built */
0034 #define BUILD_DATE "@BUILD_DATE@"
0035 
0036 /* Defines the renderer backend: Qt software renderer (requires Qt 5.8), openGL or default one */
0037 #define GRAPHICAL_RENDERER "@GRAPHICAL_RENDERER@"
0038 
0039 #endif // GCOMPRIS_CONFIG_H