Last change
on this file since 2594 was
2593,
checked in by rgrieder, 16 years ago
|
CMake sometimes has very strange behaviour… Fixed another bug int FindOGRE.cmake
|
-
Property svn:eol-style set to
native
|
File size:
1.4 KB
|
Rev | Line | |
---|
[2509] | 1 | # Set the search paths for include files |
---|
| 2 | INCLUDE_DIRECTORIES( |
---|
| 3 | ${OGRE_INCLUDE_DIR} |
---|
| 4 | ${CEGUI_INCLUDE_DIR} |
---|
[2583] | 5 | ${ENET_INCLUDE_DIR} |
---|
[2509] | 6 | ${Boost_INCLUDE_DIRS} |
---|
| 7 | ${OPENAL_INCLUDE_DIR} |
---|
| 8 | ${ALUT_INCLUDE_DIR} |
---|
| 9 | ${VORBIS_INCLUDE_DIR} |
---|
| 10 | ${OGG_INCLUDE_DIR} |
---|
| 11 | ${LUA_INCLUDE_DIR} |
---|
| 12 | ${TCL_INCLUDE_PATH} |
---|
| 13 | ${DirectX_INCLUDE_DIR} |
---|
| 14 | ${ZLIB_INCLUDE_DIR} |
---|
| 15 | ) |
---|
[1505] | 16 | |
---|
[2574] | 17 | # Check whether the required CEGUILua version is even available |
---|
| 18 | IF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua-${CEGUI_VERSION}) |
---|
[2583] | 19 | MESSAGE(FATAL_ERROR "No matching CEGUILua version shipped with Orxonox (${CEGUI_VERSION})") |
---|
[2574] | 20 | ENDIF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua-${CEGUI_VERSION}) |
---|
| 21 | |
---|
[2509] | 22 | INCLUDE_DIRECTORIES( |
---|
[2574] | 23 | ceguilua-${CEGUI_VERSION}/ceguilua |
---|
[2567] | 24 | cpptcl |
---|
| 25 | ois |
---|
| 26 | tinyxml |
---|
| 27 | tolua |
---|
| 28 | ) |
---|
| 29 | |
---|
| 30 | INCLUDE_DIRECTORIES( |
---|
[2509] | 31 | . |
---|
| 32 | orxonox |
---|
| 33 | # Required for tolua bind files that are in the build folder |
---|
| 34 | ${CMAKE_CURRENT_BINARY_DIR} |
---|
[2567] | 35 | ${CMAKE_CURRENT_BINARY_DIR}/orxonox |
---|
[2509] | 36 | ) |
---|
| 37 | |
---|
| 38 | # Set special macro symbols across all libraries |
---|
[2593] | 39 | ADD_CXX_FLAGS("-DTIXML_USE_TICPP" 1) |
---|
| 40 | ADD_C_FLAGS ("-DTIXML_USE_TICPP" 1) |
---|
[2509] | 41 | |
---|
[2583] | 42 | # Include macros |
---|
| 43 | INCLUDE(AddSourceFiles) |
---|
| 44 | INCLUDE(UseTolua) |
---|
| 45 | |
---|
| 46 | # External libraries, but copied into the repository |
---|
[2574] | 47 | ADD_SUBDIRECTORY(ceguilua-${CEGUI_VERSION}/ceguilua) |
---|
[1505] | 48 | ADD_SUBDIRECTORY(cpptcl) |
---|
[2569] | 49 | ADD_SUBDIRECTORY(ogreceguirenderer) |
---|
[1505] | 50 | ADD_SUBDIRECTORY(ois) |
---|
| 51 | ADD_SUBDIRECTORY(tinyxml) |
---|
| 52 | ADD_SUBDIRECTORY(tolua) |
---|
| 53 | |
---|
[1810] | 54 | # Our own libraries |
---|
[1505] | 55 | ADD_SUBDIRECTORY(util) |
---|
| 56 | ADD_SUBDIRECTORY(core) |
---|
[2522] | 57 | #ADD_SUBDIRECTORY(audio) |
---|
[1505] | 58 | ADD_SUBDIRECTORY(network) |
---|
| 59 | ADD_SUBDIRECTORY(orxonox) |
---|
Note: See
TracBrowser
for help on using the repository browser.