[2710] | 1 | # |
---|
| 2 | # ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | # > www.orxonox.net < |
---|
| 4 | # |
---|
| 5 | # This program is free software; you can redistribute it and/or |
---|
| 6 | # modify it under the terms of the GNU General Public License |
---|
| 7 | # as published by the Free Software Foundation; either version 2 |
---|
| 8 | # of the License, or (at your option) any later version. |
---|
| 9 | # |
---|
| 10 | # This program is distributed in the hope that it will be useful, |
---|
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | # GNU General Public License for more details. |
---|
| 14 | # |
---|
| 15 | # You should have received a copy of the GNU General Public License along |
---|
| 16 | # with this program; if not, write to the Free Software Foundation, |
---|
| 17 | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 18 | # |
---|
| 19 | |
---|
| 20 | SET_SOURCE_FILES(ORXONOX_SRC_FILES |
---|
[2087] | 21 | CameraManager.cc |
---|
[1505] | 22 | GraphicsEngine.cc |
---|
[2087] | 23 | LevelManager.cc |
---|
[1505] | 24 | Main.cc |
---|
[2662] | 25 | PawnManager.cc |
---|
[2171] | 26 | PlayerManager.cc |
---|
[1505] | 27 | ) |
---|
[3000] | 28 | IF(GGZMOD_FOUND) |
---|
| 29 | ADD_SOURCE_FILES(ORXONOX_SRC_FILES GGZClient.cc) |
---|
| 30 | ENDIF(GGZMOD_FOUND) |
---|
[2710] | 31 | ADD_SUBDIRECTORY(gamestates) |
---|
| 32 | ADD_SUBDIRECTORY(gui) |
---|
| 33 | ADD_SUBDIRECTORY(objects) |
---|
| 34 | ADD_SUBDIRECTORY(overlays) |
---|
| 35 | ADD_SUBDIRECTORY(tools) |
---|
| 36 | GET_ALL_HEADER_FILES(ORXONOX_HDR_FILES) |
---|
| 37 | SET(ORXONOX_FILES ${ORXONOX_SRC_FILES} ${ORXONOX_HDR_FILES}) |
---|
[1505] | 38 | |
---|
[2710] | 39 | GENERATE_SOURCE_GROUPS(${ORXONOX_FILES}) |
---|
| 40 | GENERATE_TOLUA_BINDINGS(Orxonox ORXONOX_FILES INPUTFILES gui/GUIManager.h) |
---|
[2129] | 41 | |
---|
[2710] | 42 | # Not using precompiled header files: Avoid dependencies |
---|
| 43 | INCLUDE_DIRECTORIES(pch/nopch) |
---|
[2087] | 44 | |
---|
[2710] | 45 | ADD_EXECUTABLE(orxonox ${ORXONOX_FILES}) |
---|
| 46 | GET_TARGET_PROPERTY(_exec_loc orxonox LOCATION) |
---|
| 47 | GET_FILENAME_COMPONENT(_exec_name ${_exec_loc} NAME) |
---|
| 48 | SET(ORXONOX_EXECUTABLE_NAME ${_exec_name} CACHE INTERNAL "") |
---|
[2087] | 49 | |
---|
[2710] | 50 | TARGET_LINK_LIBRARIES(orxonox |
---|
| 51 | ${OGRE_LIBRARY} |
---|
| 52 | ${CEGUI_LIBRARY} |
---|
| 53 | ${LUA_LIBRARIES} |
---|
| 54 | ${CEGUILUA_LIBRARY} |
---|
| 55 | ${Boost_SYSTEM_LIBRARY} |
---|
[2889] | 56 | ${GGZMOD_LIBRARIES} |
---|
[2710] | 57 | ogreceguirenderer_orxonox |
---|
| 58 | tinyxml++_orxonox |
---|
| 59 | tolua++_orxonox |
---|
| 60 | bullet_orxonox |
---|
[1505] | 61 | util |
---|
| 62 | core |
---|
| 63 | network |
---|
[2710] | 64 | #audio |
---|
[1505] | 65 | ) |
---|
| 66 | |
---|
[2710] | 67 | ORXONOX_INSTALL(orxonox) |
---|
| 68 | |
---|
| 69 | |
---|
| 70 | # When using Visual Studio we want to use the output directory as working |
---|
| 71 | # directory and we also want to specify where the external dlls |
---|
| 72 | # (lua, ogre, etc.) are. The problem hereby is that these information cannot |
---|
| 73 | # be specified in CMake because they are not stored in the actual project file. |
---|
| 74 | # This workaround will create a configured *.vcproj.user file that holds the |
---|
| 75 | # right values. When starting the solution for the first time, |
---|
| 76 | # these get written to the *vcproj.yourPCname.yourname.user |
---|
| 77 | IF(MSVC) |
---|
| 78 | IF(CMAKE_CL_64) |
---|
| 79 | SET(MSVC_PLATFORM "x64") |
---|
| 80 | ELSE() |
---|
| 81 | SET(MSVC_PLATFORM "Win32") |
---|
| 82 | ENDIF() |
---|
| 83 | STRING(REGEX REPLACE "^Visual Studio ([0-9][0-9]?) .*$" "\\1" |
---|
| 84 | VISUAL_STUDIO_VERSION_SIMPLE "${CMAKE_GENERATOR}") |
---|
| 85 | CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/orxonox.vcproj.user" "${CMAKE_CURRENT_BINARY_DIR}/orxonox.vcproj.user") |
---|
| 86 | ENDIF(MSVC) |
---|