[682] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
[1505] | 3 | * > www.orxonox.net < |
---|
[682] | 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
[2639] | 23 | * Reto Grieder |
---|
| 24 | * Co-authors: |
---|
[1293] | 25 | * ... |
---|
[682] | 26 | * |
---|
| 27 | */ |
---|
[1505] | 28 | |
---|
[682] | 29 | /** |
---|
[1032] | 30 | @file |
---|
[1755] | 31 | @brief |
---|
[2702] | 32 | Various constants and options that only affect very little code. |
---|
| 33 | @note |
---|
| 34 | This is merely to avoid recompiling everything when only a path changes. |
---|
[2639] | 35 | |
---|
| 36 | @GENERATED_FILE_COMMENT@ |
---|
[682] | 37 | */ |
---|
[1505] | 38 | |
---|
[2702] | 39 | #ifndef _SpecialConfig_H__ |
---|
| 40 | #define _SpecialConfig_H__ |
---|
[1505] | 41 | |
---|
[2946] | 42 | #include "OrxonoxConfig.h" |
---|
| 43 | |
---|
[2643] | 44 | /* Set whether we must suffix "ceguilua/" for the CEGUILua.h include */ |
---|
| 45 | #cmakedefine CEGUILUA_USE_INTERNAL_LIBRARY |
---|
| 46 | |
---|
| 47 | /* Defined if a precompiled depdency package was used. We then copy all libraries |
---|
| 48 | too when installing. */ |
---|
[2688] | 49 | #cmakedefine DEPENDENCY_PACKAGE_ENABLE |
---|
[2643] | 50 | |
---|
[2702] | 51 | /* Orxonox either gets installed to the system or just into a folder. |
---|
| 52 | The latter uses relative paths. */ |
---|
| 53 | #cmakedefine INSTALL_COPYABLE |
---|
| 54 | |
---|
[2685] | 55 | /* Using MSVC or XCode IDE */ |
---|
| 56 | #cmakedefine CMAKE_CONFIGURATION_TYPES |
---|
| 57 | |
---|
[2643] | 58 | /* Handle default ConfigValues */ |
---|
| 59 | namespace orxonox |
---|
| 60 | { |
---|
[2702] | 61 | const char* const ORXONOX_RUNTIME_INSTALL_PATH("@ORXONOX_RUNTIME_INSTALL_PATH@"); |
---|
| 62 | const char* const ORXONOX_MEDIA_INSTALL_PATH ("@ORXONOX_MEDIA_INSTALL_PATH@"); |
---|
| 63 | /* Config and Log path might be relative because they could be user and therefore runtime dependent */ |
---|
| 64 | const char* const ORXONOX_CONFIG_INSTALL_PATH ("@ORXONOX_CONFIG_INSTALL_PATH@"); |
---|
| 65 | const char* const ORXONOX_LOG_INSTALL_PATH ("@ORXONOX_LOG_INSTALL_PATH@"); |
---|
[2685] | 66 | |
---|
[2702] | 67 | const char* const ORXONOX_MEDIA_DEV_PATH ("@CMAKE_MEDIA_OUTPUT_DIRECTORY@"); |
---|
[2685] | 68 | #ifdef CMAKE_CONFIGURATION_TYPES |
---|
[2702] | 69 | const char* const ORXONOX_CONFIG_DEV_PATH ("@CMAKE_CONFIG_OUTPUT_DIRECTORY@/" MACRO_QUOTEME(CMAKE_BUILD_TYPE)); |
---|
| 70 | const char* const ORXONOX_LOG_DEV_PATH ("@CMAKE_LOG_OUTPUT_DIRECTORY@/" MACRO_QUOTEME(CMAKE_BUILD_TYPE)); |
---|
[2645] | 71 | #else |
---|
[2702] | 72 | const char* const ORXONOX_CONFIG_DEV_PATH ("@CMAKE_CONFIG_OUTPUT_DIRECTORY@"); |
---|
| 73 | const char* const ORXONOX_LOG_DEV_PATH ("@CMAKE_LOG_OUTPUT_DIRECTORY@"); |
---|
[2645] | 74 | #endif |
---|
[2643] | 75 | |
---|
[2685] | 76 | /* OGRE Plugins */ |
---|
[2643] | 77 | #ifdef NDEBUG |
---|
| 78 | const char* const ORXONOX_OGRE_PLUGINS("@OGRE_PLUGINS_RELEASE@"); |
---|
[2688] | 79 | # ifdef DEPENDENCY_PACKAGE_ENABLE |
---|
[2643] | 80 | const char* const ORXONOX_OGRE_PLUGINS_FOLDER("."); |
---|
[2650] | 81 | # else |
---|
[2643] | 82 | const char* const ORXONOX_OGRE_PLUGINS_FOLDER("@OGRE_PLUGINS_FOLDER_RELEASE@"); |
---|
| 83 | # endif |
---|
| 84 | #else |
---|
| 85 | const char* const ORXONOX_OGRE_PLUGINS("@OGRE_PLUGINS_DEBUG@"); |
---|
[2688] | 86 | # ifdef DEPENDENCY_PACKAGE_ENABLE |
---|
[2643] | 87 | const char* const ORXONOX_OGRE_PLUGINS_FOLDER("."); |
---|
[2650] | 88 | # else |
---|
[2643] | 89 | const char* const ORXONOX_OGRE_PLUGINS_FOLDER("@OGRE_PLUGINS_FOLDER_DEBUG@"); |
---|
| 90 | # endif |
---|
| 91 | #endif |
---|
| 92 | } |
---|
| 93 | |
---|
[2702] | 94 | #endif /* _SpecialConfig_H__ */ |
---|