- Timestamp:
- Oct 28, 2007, 10:23:24 PM (17 years ago)
- Location:
- code/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/CMakeLists.txt
r113 r114 41 41 FIND_PACKAGE(OIS) 42 42 FIND_PACKAGE(CEGUI) 43 #FIND_PACKAGE(CEGUI_OPENGL)44 43 FIND_PACKAGE(CEGUI_OGRE) 45 44 -
code/trunk/cmake/FindCEGUI.cmake
r113 r114 7 7 # CEGUI_FOUND, If false, do not try to use CEGUI 8 8 # 9 # Created by Matt Williams to find OGRE libraries 9 10 # Copyright © 2007, Matt Williams 10 # Modified by Nicolas Schlumberger to make it work on the Tardis-Infrastucture of the ETH Zurich 11 # 12 # Modified by Nicolas Schlumberger to find CEGUI libraries 13 # and make it run on the Tardis-Infrastucture of the ETH Zurich 14 # Copyright 2007, Nicolas Schlumberger 11 15 # 12 16 # Redistribution and use is allowed according to the terms of the BSD license. … … 16 20 ENDIF (CEGUI_LIBRARIES AND CEGUI_INCLUDE_DIR) 17 21 22 # TODO: test wondows part. 23 # windows part currently untested. (28.>Oct2007) 18 24 IF (WIN32) #Windows 19 25 MESSAGE(STATUS "Looking for CEGUI") -
code/trunk/cmake/FindCEGUI_OGRE.cmake
r113 r114 7 7 # CEGUI_OGRE_FOUND, If false, do not try to use CEGUI_OGRE 8 8 # 9 # Created by Matt Williams to find OGRE libraries 9 10 # Copyright © 2007, Matt Williams 10 # Modified by Nicolas Schlumberger to make it work on the Tardis-Infrastucture of the ETH Zurich 11 # 12 # Modified by Nicolas Schlumberger to find CEGUI-OGRE libraries 13 # and make it run on the Tardis-Infrastucture of the ETH Zurich 14 # Copyright 2007, Nicolas Schlumberger 11 15 # 12 16 # Redistribution and use is allowed according to the terms of the BSD license. … … 16 20 ENDIF (CEGUI_OGRE_LIBRARIES AND CEGUI_OGRE_INCLUDE_DIR) 17 21 22 ## TODO: test windows part 23 # windows part is currently untested. (28.Oct.2007) 18 24 IF (WIN32) #Windows 19 25 MESSAGE(STATUS "Looking for CEGUI_OGRE") -
code/trunk/cmake/FindOIS.cmake
r91 r114 10 10 # Copyright © 2007, Matt Williams 11 11 # 12 # Modified by Nicolas Schlumberger to find OIS libraries 12 # Modified by Nicolas Schlumberger to find OIS libraries 13 13 # and make it run on the Tardis-Infrastucture of the ETH Zurich 14 14 # Copyright 2007, Nicolas Schlumberger … … 20 20 ENDIF (OIS_LIBRARIES AND OIS_INCLUDE_DIR) 21 21 22 ## TODO: test windows part 23 # windows part is currently untested. (28.Oct.2007) 22 24 IF (WIN32) #Windows 23 25 MESSAGE(STATUS "Looking for OIS") … … 26 28 SET(OIS_INCLUDE_DIR ${OISSDK}/include) 27 29 SET(OIS_LIB_DIR ${OISSDK}/lib) 28 SET(OIS_LIBRARIES debug OgreMain_d optimized OgreMain)30 #SET(OIS_LIBRARIES debug OgreMain_d optimized OgreMain) 29 31 ELSE (WIN32) #Unix 30 32 FIND_PACKAGE(PkgConfig)
Note: See TracChangeset
for help on using the changeset viewer.