- Timestamp:
- Oct 27, 2007, 10:47:19 PM (17 years ago)
- Location:
- code/trunk
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/CMakeLists.txt
r89 r112 40 40 FIND_PACKAGE(OGRE) 41 41 FIND_PACKAGE(OIS) 42 FIND_PACKAGE(CEGUI) 43 FIND_PACKAGE(CEGUI_OPENGL) 44 FIND_PACKAGE(CEGUI_OGRE) 45 42 46 43 47 #Sets the search paths for the linking 44 LINK_DIRECTORIES(${OGRE_LIB_DIR} ${OIS_LIB_DIR} )48 LINK_DIRECTORIES(${OGRE_LIB_DIR} ${OIS_LIB_DIR} ${CEGUI_LIB_DIR} ${CEGUI_OGRE_LIB_DIR} ${CEGUI_OGRE_LIB_DIR}) 45 49 #Sets the search path for include files 46 INCLUDE_DIRECTORIES(${OGRE_INCLUDE_DIR} ${OIS_INCLUDE_DIR} )50 INCLUDE_DIRECTORIES(${OGRE_INCLUDE_DIR} ${OIS_INCLUDE_DIR} ${CEGUI_INCLUDE_DIR} ${CEGUI_OGRE_INCLUDE_DIR} ${CEGUI_OGRE_INCLUDE_DIR}) 47 51 48 52 #add main source dir -
code/trunk/src/orxonox.cc
r107 r112 28 28 // TODO: Change this to orxonox.h and include all necessary functions there 29 29 #include "ExampleApplication.h" 30 #include <CEGUI/CEGUI.h> 30 31 31 32 // TODO: Put creation of SceneNode and implementation of FrameListener into an extern file
Note: See TracChangeset
for help on using the changeset viewer.