Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 21, 2008, 8:30:03 PM (17 years ago)
Author:
rgrieder
Message:

Minor changes with cmake files. The whole thing compiles on tardis now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ceguilua/src/CMakeLists.txt

    r1804 r1808  
    22INCLUDE_DIRECTORIES(..)
    33INCLUDE_DIRECTORIES(orxonox)
    4 #INCLUDE_DIRECTORIES(tolua)
    54
    65ADD_SUBDIRECTORY(cpptcl)
    76ADD_SUBDIRECTORY(ois)
    87ADD_SUBDIRECTORY(tinyxml)
     8ADD_SUBDIRECTORY(lua)
     9ADD_SUBDIRECTORY(tolua)
    910
    10 # This section deals with Lua version problems because CEGUILua scripting
    11 # module for CEGUI also uses Lua, but maybe with a different version.
     11# Some people may not have CEGUILua installed, espc. with version 0.5
     12# And we don't know what lua version it was linked against, so we compile
     13# it ourselves.
    1214# So first, find out what CEGUI version we have.
     15IF (${CEGUI_VERSION} LESS 0.6.0)
     16    ADD_SUBDIRECTORY(ceguilua-0.5.0b)
     17    INCLUDE_DIRECTORIES(ceguilua-0.5.0b)
     18ELSE (${CEGUI_VERSION} LESS 0.6.0)
     19    ADD_SUBDIRECTORY(ceguilua-0.6.1)
     20    INCLUDE_DIRECTORIES(ceguilua-0.6.1)
     21ENDIF (${CEGUI_VERSION} LESS 0.6.0)
    1322
    1423
    15 ADD_SUBDIRECTORY(tolua)
    16 
     24# Our own libraries
    1725ADD_SUBDIRECTORY(util)
    1826ADD_SUBDIRECTORY(core)
Note: See TracChangeset for help on using the changeset viewer.