-
-
Notifications
You must be signed in to change notification settings - Fork 494
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#ifndef CONFIG_H | ||
#define CONFIG_H | ||
|
||
#define PACKAGE_NAME "supertux2" | ||
|
||
#cmakedefine ENABLE_SQDBG | ||
|
||
#define INSTALL_SUBDIR_BIN "${INSTALL_SUBDIR_BIN}" | ||
#define INSTALL_SUBDIR_SHARE "${INSTALL_SUBDIR_SHARE}" | ||
|
||
#cmakedefine HAVE_ICONV_CONST | ||
#ifdef HAVE_ICONV_CONST | ||
#define ICONV_CONST const | ||
#else | ||
#define ICONV_CONST | ||
#endif | ||
|
||
#cmakedefine WORDS_BIGENDIAN | ||
|
||
#cmakedefine HAVE_OPENGL | ||
|
||
#cmakedefine HAVE_LIBCURL | ||
|
||
#define BUILD_DATA_DIR "${BUILD_DATA_DIR}" | ||
|
||
#define BUILD_CONFIG_DATA_DIR "${BUILD_CONFIG_DATA_DIR}" | ||
|
||
#cmakedefine ENABLE_DISCORD | ||
#cmakedefine STEAM_BUILD | ||
|
||
#cmakedefine UBUNTU_TOUCH | ||
#cmakedefine HIDE_NONMOBILE_OPTIONS | ||
|
||
#cmakedefine REMOVE_QUIT_BUTTON | ||
|
||
#endif /*CONFIG_H*/ |