[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 |
---|
[2896] | 22 | GraphicsManager.cc |
---|
[2087] | 23 | LevelManager.cc |
---|
[1505] | 24 | Main.cc |
---|
[2662] | 25 | PawnManager.cc |
---|
[2171] | 26 | PlayerManager.cc |
---|
[1505] | 27 | ) |
---|
[2710] | 28 | ADD_SUBDIRECTORY(gamestates) |
---|
| 29 | ADD_SUBDIRECTORY(gui) |
---|
[3196] | 30 | ADD_SUBDIRECTORY(interfaces) |
---|
[2710] | 31 | ADD_SUBDIRECTORY(objects) |
---|
| 32 | ADD_SUBDIRECTORY(overlays) |
---|
[3196] | 33 | ADD_SUBDIRECTORY(sound) |
---|
[2710] | 34 | ADD_SUBDIRECTORY(tools) |
---|
[1505] | 35 | |
---|
[3196] | 36 | # Translate argument |
---|
| 37 | IF(ORXONOX_USE_WINMAIN) |
---|
| 38 | SET(ORXONOX_WIN32 WIN32) |
---|
| 39 | ENDIF() |
---|
[2129] | 40 | |
---|
[3196] | 41 | ORXONOX_ADD_EXECUTABLE(orxonox |
---|
| 42 | FIND_HEADER_FILES |
---|
| 43 | TOLUA_FILES |
---|
| 44 | gui/GUIManager.h |
---|
| 45 | objects/pickup/BaseItem.h |
---|
| 46 | objects/pickup/PickupInventory.h |
---|
| 47 | objects/quest/QuestDescription.h |
---|
| 48 | objects/quest/QuestManager.h |
---|
| 49 | PCH_FILE |
---|
| 50 | OrxonoxPrecompiledHeaders.h |
---|
| 51 | PCH_NO_DEFAULT |
---|
| 52 | # When defined as WIN32 this removes the console window on Windows |
---|
| 53 | ${ORXONOX_WIN32} |
---|
| 54 | LINK_LIBRARIES |
---|
| 55 | ${OGRE_LIBRARY} |
---|
| 56 | ${CEGUI_LIBRARY} |
---|
| 57 | ${LUA_LIBRARIES} |
---|
| 58 | ${CEGUILUA_LIBRARY} |
---|
| 59 | ${Boost_SYSTEM_LIBRARY} |
---|
| 60 | ${OPENAL_LIBRARY} |
---|
| 61 | ${ALUT_LIBRARY} |
---|
| 62 | ${VORBISFILE_LIBRARY} |
---|
| 63 | ${VORBIS_LIBRARY} |
---|
| 64 | ${OGG_LIBRARY} |
---|
| 65 | ogreceguirenderer_orxonox |
---|
| 66 | tinyxml++_orxonox |
---|
| 67 | tolua++_orxonox |
---|
| 68 | bullet_orxonox |
---|
| 69 | util |
---|
| 70 | core |
---|
| 71 | network |
---|
| 72 | SOURCE_FILES ${ORXONOX_SRC_FILES} |
---|
| 73 | ) |
---|
| 74 | |
---|
[2710] | 75 | GET_TARGET_PROPERTY(_exec_loc orxonox LOCATION) |
---|
| 76 | GET_FILENAME_COMPONENT(_exec_name ${_exec_loc} NAME) |
---|
| 77 | SET(ORXONOX_EXECUTABLE_NAME ${_exec_name} CACHE INTERNAL "") |
---|
[2087] | 78 | |
---|
[1505] | 79 | |
---|
[2710] | 80 | # When using Visual Studio we want to use the output directory as working |
---|
| 81 | # directory and we also want to specify where the external dlls |
---|
| 82 | # (lua, ogre, etc.) are. The problem hereby is that these information cannot |
---|
| 83 | # be specified in CMake because they are not stored in the actual project file. |
---|
| 84 | # This workaround will create a configured *.vcproj.user file that holds the |
---|
| 85 | # right values. When starting the solution for the first time, |
---|
| 86 | # these get written to the *vcproj.yourPCname.yourname.user |
---|
| 87 | IF(MSVC) |
---|
| 88 | IF(CMAKE_CL_64) |
---|
| 89 | SET(MSVC_PLATFORM "x64") |
---|
| 90 | ELSE() |
---|
| 91 | SET(MSVC_PLATFORM "Win32") |
---|
| 92 | ENDIF() |
---|
| 93 | STRING(REGEX REPLACE "^Visual Studio ([0-9][0-9]?) .*$" "\\1" |
---|
| 94 | VISUAL_STUDIO_VERSION_SIMPLE "${CMAKE_GENERATOR}") |
---|
[3196] | 95 | CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/orxonox.vcproj.user.in" "${CMAKE_CURRENT_BINARY_DIR}/orxonox.vcproj.user") |
---|
[2710] | 96 | ENDIF(MSVC) |
---|