[2579] | 1 | # |
---|
| 2 | # ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | # > www.orxonox.net < |
---|
| 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: |
---|
| 23 | # Reto Grieder |
---|
| 24 | # Co-authors: |
---|
| 25 | # ... |
---|
| 26 | # |
---|
| 27 | |
---|
[2582] | 28 | # If you want to set specific options for your platform, simply |
---|
| 29 | # create a file called "ConfigUser.cmake" in the binary folder |
---|
| 30 | # (see at the bottom of the file) |
---|
[2579] | 31 | |
---|
[2582] | 32 | ############ Misc Default Options ############### |
---|
| 33 | |
---|
[2583] | 34 | # When searching for debug libraries, this is appended to the libarary name |
---|
[2579] | 35 | SET(LIBRARY_DEBUG_POSTFIX "_d") |
---|
[2583] | 36 | # Working directory for the tolua parser. Adjust for windows because lua.dll has to be there! |
---|
| 37 | SET(TOLUA_PARSER_WORKING_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) |
---|
[2582] | 38 | |
---|
[2583] | 39 | OPTION(EXTRA_WARNINGS "Enable some extra warnings (heavily pollutes the output)") |
---|
[2582] | 40 | IF(EXTRA_WARNINGS) |
---|
| 41 | SET(ORXONOX_WARNING_FLAGS "-Wextra --Wno-unsued-parameter") |
---|
| 42 | ELSE(EXTRA_WARNINGS) |
---|
| 43 | SET(ORXONOX_WARNING_FLAGS "-Wall") |
---|
| 44 | ENDIF(EXTRA_WARNINGS) |
---|
| 45 | |
---|
[2585] | 46 | SET(ORXONOX_MEDIA_DIRECTORY "${CMAKE_SOURCE_DIR}/../media") |
---|
| 47 | # More plugins: Plugin_BSPSceneManager, Plugin_OctreeSceneManager |
---|
| 48 | # Render systems may be optional, but at least one has to be found in FindOgre |
---|
| 49 | SET(OGRE_PLUGINS RenderSystem_GL RenderSystem_Direct3D9 Plugin_ParticleFX Plugin_CgProgramManager) |
---|
| 50 | |
---|
| 51 | |
---|
[2582] | 52 | ###### Default Compiler/Linker Options ########## |
---|
| 53 | # Most people use GCC to compile orxonox, so use that as default |
---|
| 54 | |
---|
| 55 | SET(CMAKE_C_FLAGS "$ENV{CFLAGS} ${ORXONOX_WARNING_FLAGS} -fPIC") |
---|
| 56 | SET(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} ${ORXONOX_WARNING_FLAGS} -fPIC") |
---|
| 57 | # These flags are added to the flags above |
---|
| 58 | SET(CMAKE_C_FLAGS_DEBUG " -g -ggdb") |
---|
| 59 | SET(CMAKE_CXX_FLAGS_DEBUG " -g -ggdb") |
---|
| 60 | SET(CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG") |
---|
| 61 | SET(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG") |
---|
| 62 | SET(CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g -ggdb -DNDEBUG") |
---|
| 63 | SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g -ggdb -DNDEBUG") |
---|
| 64 | SET(CMAKE_C_FLAGS_MINSIZEREL "-Os -DNDEBUG") |
---|
| 65 | SET(CMAKE_CXX_FLAGS_MINSIZEREL "-Os -DNDEBUG") |
---|
| 66 | |
---|
| 67 | SET(CMAKE_LD_FLAGS "$ENV{LDFLAGS}") |
---|
| 68 | SET(CMAKE_EXE_LINKER_FLAGS " --no-undefined") |
---|
| 69 | SET(CMAKE_SHARED_LINKER_FLAGS " --no-undefined") |
---|
| 70 | SET(CMAKE_MODULE_LINKER_FLAGS " --no-undefined") |
---|
| 71 | |
---|
| 72 | ########## Plaform Specific Config ############## |
---|
| 73 | |
---|
[2579] | 74 | # Set the platform specific options and paths |
---|
| 75 | INCLUDE(ConfigTardis) |
---|
| 76 | INCLUDE(ConfigMSVC) |
---|
| 77 | INCLUDE(ConfigMinGW) |
---|
[2582] | 78 | # User can create his own file if required |
---|
| 79 | IF(EXISTS ${CMAKE_BINARY_DIR}/ConfigUser.cmake) |
---|
| 80 | INCLUDE(${CMAKE_BINARY_DIR}/ConfigUser) |
---|
| 81 | ENDIF(EXISTS ${CMAKE_BINARY_DIR}/ConfigUser.cmake) |
---|