File indexing completed on 2024-04-21 14:43:26

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 /* Version number of package (string) */
0014 #define VERSION "0.80"
0015 /* Version number of package (integer) */
0016 #define VERSION_CODE 8000
0017 /* Folder where rccs and translations are installed */
0018 #ifdef  Q_OS_MAC
0019 #define GCOMPRIS_DATA_FOLDER "."
0020 #else
0021 #define GCOMPRIS_DATA_FOLDER "../bin/gcompris-qt.app/Contents/MacOS"
0022 #endif
0023 /* GCompris for android, gcompris-qt for others */
0024 #define GCOMPRIS_APPLICATION_NAME "gcompris-qt"
0025 /* Compressed audio format */
0026 #define COMPRESSED_AUDIO "aac"
0027 /* Download Allowed */
0028 #define DOWNLOAD_ALLOWED "ON"
0029 /* Date at which GCompris has been built */
0030 #define BUILD_DATE "201757"
0031 
0032 #endif // GCOMPRIS_CONFIG_H