Random stuff that I should have committed ages ago.
[supertux.git] / config.h.cmake
1 #ifndef CONFIG_H
2 #define CONFIG_H
3
4 #define PACKAGE_NAME "supertux"
5
6 #cmakedefine DEBUG
7 #cmakedefine ENABLE_SQDBG
8
9 #cmakedefine ENABLE_BINRELOC
10 #define APPDATADIR "${APPDATADIR}"
11
12 #define SIZEOF_VOID_P ${SIZEOF_VOID_P}
13 #if SIZEOF_VOID_P == 8
14 #define _SQ64
15 #endif
16
17 #cmakedefine HAVE_ICONV_CONST
18 #ifdef HAVE_ICONV_CONST
19 #define ICONV_CONST const
20 #else
21 #define ICONV_CONST
22 #endif
23
24 #cmakedefine WORDS_BIGENDIAN
25
26 #cmakedefine HAVE_OPENGL
27
28 #cmakedefine HAVE_LIBCURL
29
30 #endif /*CONFIG_H*/