Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/physics_merge/src/CMakeLists.txt @ 2442

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

Finally merged physics stuff. Target is physics_merge because I'll have to do some testing first.

  • Property svn:eol-style set to native
File size: 1.1 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(lua)
11ADD_SUBDIRECTORY(tolua)
12
13# Some people may not have CEGUILua installed, espc. with version 0.5
14# And we don't know what lua version it was linked against, so we compile
15# it ourselves.
16# So first, find out what CEGUI version we have.
17
18IF (WIN32)
19    ADD_SUBDIRECTORY(ceguilua-0.6.1/ceguilua)
20    INCLUDE_DIRECTORIES(ceguilua-0.6.1)
21ELSE (WIN32)
22    IF (${CEGUI_VERSION} LESS 0.6.0)
23        ADD_SUBDIRECTORY(ceguilua-0.5.0b/ceguilua)
24        INCLUDE_DIRECTORIES(ceguilua-0.5.0b)
25    ELSE (${CEGUI_VERSION} LESS 0.6.0)
26        ADD_SUBDIRECTORY(ceguilua-0.6.1/ceguilua)
27        INCLUDE_DIRECTORIES(ceguilua-0.6.1)
28    ENDIF (${CEGUI_VERSION} LESS 0.6.0)
29ENDIF (WIN32)
30
31# Include macro to easily add source files in subdirectories
32INCLUDE(AddSourceFiles)
33
34# Our own libraries
35ADD_SUBDIRECTORY(util)
36ADD_SUBDIRECTORY(core)
37ADD_SUBDIRECTORY(audio)
38ADD_SUBDIRECTORY(network)
39ADD_SUBDIRECTORY(orxonox)
Note: See TracBrowser for help on using the repository browser.