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 819B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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_PNG
  19. #cmakedefine HAVE_EXECINFO_H
  20. #cmakedefine HAVE_BACKTRACE
  21. #cmakedefine HAVE_BACKTRACE_SYMBOLS
  22. #cmakedefine HAVE_DIRENT_H
  23. #cmakedefine HAVE_OPENDIR
  24. #cmakedefine HAVE_READDIR_R
  25. #cmakedefine HAVE_CLOSEDIR
  26. #cmakedefine HAVE_DT_DIR
  27. #cmakedefine HAVE_UNISTD_H
  28. #cmakedefine HAVE_GETCWD
  29. #cmakedefine HAVE_STDLIB_H
  30. #cmakedefine HAVE_GETENV
  31. #endif