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

12345678910111213141516171819202122232425
  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. #define VERSION "OpenRaider-@OpenRaider_VERSION_MAJOR@.@OpenRaider_VERSION_MINOR@.@OpenRaider_VERSION_MICRO@@OpenRaider_VERSION_RELEASE@ (@CMAKE_BUILD_TYPE@)"
  10. #define BUILD_HOST "@OpenRaider_BUILD_HOST@ @OpenRaider_HOSTNAME@"
  11. #define DEFAULT_CONFIG_PATH "~/.OpenRaider"
  12. #define DEFAULT_CONFIG_FILE "OpenRaider.ini"
  13. #define DEFAULT_WIDTH 640
  14. #define DEFAULT_HEIGHT 480
  15. #cmakedefine USING_AL
  16. #cmakedefine HAVE_EXECINFO_H
  17. #cmakedefine HAVE_BACKTRACE
  18. #cmakedefine HAVE_BACKTRACE_SYMBOLS
  19. #endif