Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 1964 was 1964, checked in by rgrieder, 15 years ago

clicked on the wrong folder.. Here are the CMLs changes.

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