# # ORXONOX - the hottest 3D action shooter ever to exist # > www.orxonox.net < # # # License notice: # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # Author: # Reto Grieder # Co-authors: # ... # ############## MSVC config ################ # Set the library directory when using precompiled tarballs for # the dependencies under windows (MSVC) ########################################### IF (MSVC) MESSAGE(STATUS "Running on MSVC. Using customized paths.") SET(MSVC_LIBRARY_DIR "${CMAKE_SOURCE_DIR}/dependencies/orxonox_vc8") MARK_AS_ADVANCED(MSVC_LIBRARY_DIR) SET(BOOST_INCLUDEDIR ${MSVC_LIBRARY_DIR}/boost-1.35.0/include) SET(BOOST_LIBRARYDIR ${MSVC_LIBRARY_DIR}/boost-1.35.0/lib) SET(ENV{CEGUIDIR} ${MSVC_LIBRARY_DIR}/cegui-0.6.1) SET(ENV{ENETDIR} ${MSVC_LIBRARY_DIR}/enet-1.2) SET(ENV{ALUTDIR} ${MSVC_LIBRARY_DIR}/freealut-1.1.0) SET(ENV{OGGDIR} ${MSVC_LIBRARY_DIR}/libogg-1.1.3) SET(ENV{VORBISDIR} ${MSVC_LIBRARY_DIR}/libvorbis-1.2.0) SET(ENV{OPENALDIR} ${MSVC_LIBRARY_DIR}/openal-1.1) SET(ENV{LUA_DIR} ${MSVC_LIBRARY_DIR}/lua-5.1.3) SET(ENV{OGRE_HOME} ${MSVC_LIBRARY_DIR}/ogre-1.4.9) SET(TCL_INCLUDE_PATH ${MSVC_LIBRARY_DIR}/tcl-8.5.2/include) SET(TCL_LIBRARY ${MSVC_LIBRARY_DIR}/tcl-8.5.2/lib/tcl85t.lib) SET(TCL_FOUND TRUE) SET(TCL_TCLSH ${MSVC_LIBRARY_DIR}/tcl-8.5.2/lib/tcl85t.lib) SET(TCL_TCLSH_FOUND TRUE) SET(ZLIB_INCLUDE_DIR ${MSVC_LIBRARY_DIR}/zlib-1.2.3/include) SET(ZLIB_LIBRARY OPTIMIZED ${MSVC_LIBRARY_DIR}/zlib-1.2.3/lib/zlib.lib DEBUG ${MSVC_LIBRARY_DIR}/zlib-1.2.3/lib/zlib_d.lib) SET(ZLIB_FOUND TRUE) ENDIF (MSVC)