Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 29, 2009, 8:13:22 PM (15 years ago)
Author:
rgrieder
Message:

Large cleanup in CEGUILua:

  • Removed the heavy 1.7MB bind files and added the small pkg files from the CEGUI source instead
  • Those pkg files get copied version incrementally (starting with 0.5.0) to the binary dir. That saves a lot of files when having 4 different versions.
  • Added support for CEGUI 0.6.0 and 0.6.2
  • Added library info files
  • CEGUILua 0.5.0 finally supports Lua 5.1 too That means all version support both Lua 5.0 and 5.1
  • Added unified diffs with the changes to the CEGUILua source
File:
1 edited

Legend:

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

    r2593 r2608  
    1616
    1717# Check whether the required CEGUILua version is even available
    18 IF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua-${CEGUI_VERSION})
     18IF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua/ceguilua-${CEGUI_VERSION})
    1919  MESSAGE(FATAL_ERROR "No matching CEGUILua version shipped with Orxonox (${CEGUI_VERSION})")
    20 ENDIF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua-${CEGUI_VERSION})
     20ENDIF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua/ceguilua-${CEGUI_VERSION})
    2121
    2222INCLUDE_DIRECTORIES(
    23   ceguilua-${CEGUI_VERSION}/ceguilua
     23  ceguilua/ceguilua-${CEGUI_VERSION}/ceguilua
    2424  cpptcl
    2525  ois
     
    4545
    4646# External libraries, but copied into the repository
    47 ADD_SUBDIRECTORY(ceguilua-${CEGUI_VERSION}/ceguilua)
     47ADD_SUBDIRECTORY(ceguilua)
    4848ADD_SUBDIRECTORY(cpptcl)
    4949ADD_SUBDIRECTORY(ogreceguirenderer)
Note: See TracChangeset for help on using the changeset viewer.