* Add upgrade.wav from Yaniel
[supertux.git] / config.h.cmake
1 #ifndef CONFIG_H
2 #define CONFIG_H
3
4 #define PACKAGE_NAME "supertux"
5 #define PACKAGE_VERSION "0.3.2-SVN${REVISION}"
6
7 #cmakedefine DEBUG
8 #cmakedefine ENABLE_SQDBG
9
10 #cmakedefine ENABLE_BINRELOC
11 #define APPDATADIR "${APPDATADIR}"
12
13 #define SIZEOF_VOID_P ${SIZEOF_VOID_P}
14 #if SIZEOF_VOID_P == 8
15 #define _SQ64
16 #endif
17
18 #cmakedefine HAVE_ICONV_CONST
19 #ifdef HAVE_ICONV_CONST
20 #define ICONV_CONST const
21 #else
22 #define ICONV_CONST
23 #endif
24
25 #cmakedefine WORDS_BIGENDIAN
26
27 #cmakedefine HAVE_OPENGL
28
29 #cmakedefine HAVE_LIBCURL
30
31 //Useful constants
32 static const float DELTA = .0001f;
33
34 // the engine will be run with a logical framerate of 64fps.
35 // We chose 64fps here because it is a power of 2, so 1/64 gives an "even"
36 // binary fraction...
37 static const float LOGICAL_FPS = 64.0;
38
39
40 #endif /*CONFIG_H*/