Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/physics/src/CMakeLists.txt @ 1919

Last change on this file since 1919 was 1919, checked in by rgrieder, 16 years ago

Added OgreODE to our source repository because already we really need the newest version. And there is no hope to find any packages under linux.
The files included should compile and link with Ogre 1.4/1.6 and ODE 0.9/0.10. I was only able to test Ogre 1.4 and ODE 0.9/.10 under msvc until now.

  • Property svn:eol-style set to native
File size: 1007 bytes
Line 
1INCLUDE_DIRECTORIES(.)
2INCLUDE_DIRECTORIES(..)
3INCLUDE_DIRECTORIES(orxonox)
4
5ADD_SUBDIRECTORY(cpptcl)
6ADD_SUBDIRECTORY(ois)
7ADD_SUBDIRECTORY(tinyxml)
8ADD_SUBDIRECTORY(ogreode)
9ADD_SUBDIRECTORY(lua)
10ADD_SUBDIRECTORY(tolua)
11
12# Some people may not have CEGUILua installed, espc. with version 0.5
13# And we don't know what lua version it was linked against, so we compile
14# it ourselves.
15# So first, find out what CEGUI version we have.
16
17IF (WIN32)
18    ADD_SUBDIRECTORY(ceguilua-0.6.1/ceguilua)
19    INCLUDE_DIRECTORIES(ceguilua-0.6.1)
20ELSE (WIN32)
21    IF (${CEGUI_VERSION} LESS 0.6.0)
22        ADD_SUBDIRECTORY(ceguilua-0.5.0b/ceguilua)
23        INCLUDE_DIRECTORIES(ceguilua-0.5.0b)
24    ELSE (${CEGUI_VERSION} LESS 0.6.0)
25        ADD_SUBDIRECTORY(ceguilua-0.6.1/ceguilua)
26        INCLUDE_DIRECTORIES(ceguilua-0.6.1)
27    ENDIF (${CEGUI_VERSION} LESS 0.6.0)
28ENDIF (WIN32)
29
30
31# Our own libraries
32ADD_SUBDIRECTORY(util)
33ADD_SUBDIRECTORY(core)
34ADD_SUBDIRECTORY(audio)
35ADD_SUBDIRECTORY(network)
36ADD_SUBDIRECTORY(orxonox)
Note: See TracBrowser for help on using the repository browser.