config.h.cmake 533 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. #define PACKAGE_NAME "supertux2"
  4. #cmakedefine ENABLE_SQDBG
  5. #cmakedefine ENABLE_BINRELOC
  6. #define INSTALL_SUBDIR_BIN "${INSTALL_SUBDIR_BIN}"
  7. #define INSTALL_SUBDIR_SHARE "${INSTALL_SUBDIR_SHARE}"
  8. #define SIZEOF_VOID_P ${SIZEOF_VOID_P}
  9. #if SIZEOF_VOID_P == 8
  10. #define _SQ64
  11. #endif
  12. #cmakedefine HAVE_ICONV_CONST
  13. #ifdef HAVE_ICONV_CONST
  14. #define ICONV_CONST const
  15. #else
  16. #define ICONV_CONST
  17. #endif
  18. #cmakedefine WORDS_BIGENDIAN
  19. #cmakedefine HAVE_OPENGL
  20. #cmakedefine HAVE_LIBCURL
  21. #endif /*CONFIG_H*/