Open Source Tomb Raider Engine
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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@";