Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.h.in 897B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*!
  2. * \file include/config.h.in
  3. * \brief Global config file template
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _CONFIG_H_
  8. #define _CONFIG_H_
  9. extern const unsigned int DEFAULT_WIDTH;
  10. extern const unsigned int DEFAULT_HEIGHT;
  11. extern const char* VERSION;
  12. extern const char* VERSION_SHORT;
  13. extern const char* BUILD_HOST;
  14. extern const char* DEFAULT_CONFIG_PATH;
  15. extern const char* DEFAULT_CONFIG_FILE;
  16. extern const char* INSTALL_PREFIX;
  17. #cmakedefine USING_AL
  18. #cmakedefine USING_SDL
  19. #cmakedefine USING_GLFW
  20. #cmakedefine HAVE_EXECINFO_H
  21. #cmakedefine HAVE_BACKTRACE
  22. #cmakedefine HAVE_BACKTRACE_SYMBOLS
  23. #cmakedefine HAVE_DIRENT_H
  24. #cmakedefine HAVE_OPENDIR
  25. #cmakedefine HAVE_READDIR_R
  26. #cmakedefine HAVE_CLOSEDIR
  27. #cmakedefine HAVE_DT_DIR
  28. #cmakedefine HAVE_UNISTD_H
  29. #cmakedefine HAVE_GETCWD
  30. #cmakedefine HAVE_DIRECT_H
  31. #cmakedefine HAVE__GETCWD
  32. #cmakedefine HAVE_STDLIB_H
  33. #cmakedefine HAVE_GETENV
  34. #endif