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.cpp.in 756B

123456789101112131415161718192021222324
  1. /*!
  2. * \file src/config.cpp.in
  3. * \brief Global config file template
  4. *
  5. * \author xythobuz
  6. */
  7. #include "global.h"
  8. const unsigned int DEFAULT_WIDTH = 1280;
  9. const unsigned int DEFAULT_HEIGHT = 720;
  10. const char* VERSION = "OpenRaider-@OpenRaider_VERSION_MAJOR@.@OpenRaider_VERSION_MINOR@.@OpenRaider_VERSION_MICRO@@OpenRaider_VERSION_RELEASE@ (@CMAKE_BUILD_TYPE@)";
  11. const char* VERSION_SHORT = "OpenRaider-@OpenRaider_VERSION_MAJOR@.@OpenRaider_VERSION_MINOR@.@OpenRaider_VERSION_MICRO@@OpenRaider_VERSION_RELEASE@";
  12. const char* BUILD_HOST = "@OpenRaider_BUILD_HOST@ @OpenRaider_HOSTNAME@";
  13. const char* DEFAULT_CONFIG_PATH = "~/.OpenRaider";
  14. const char* DEFAULT_CONFIG_FILE = "OpenRaider.ini";
  15. const char* INSTALL_PREFIX = "@CMAKE_INSTALL_PREFIX@";