Skip to content

Commit

Permalink
add config.h.in. Oops.
Browse files Browse the repository at this point in the history
  • Loading branch information
MatusGuy committed Jul 6, 2024
1 parent c215240 commit 7027eb5
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions config.h.in
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*/

0 comments on commit 7027eb5

Please sign in to comment.