Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7947


Ignore:
Timestamp:
Feb 21, 2011, 4:35:28 AM (13 years ago)
Author:
rgrieder
Message:

Dropping support for CEGUI v0.5 as v0.6 has been available for three years now.

Location:
code/branches/kicklib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/kicklib/INSTALL

    r7248 r7947  
    1010
    1111OGRE 3D Graphics Engine          1.4 - 1.7
    12 CEGUI (Crazy Eddie's GUI System) 0.5 - 0.6
     12CEGUI (Crazy Eddie's GUI System) 0.6
    1313Boost libraries                  1.35 -
    1414ENet (Network library)           1.1 - 1.2
  • code/branches/kicklib/cmake/LibraryConfig.cmake

    r7944 r7947  
    115115# Since Lua v5.1 has been out for a long while, this does not seem to be a
    116116# problem anymore, at least as long as Lua 5.2 is not released.
    117 FIND_PACKAGE(CEGUI 0.5 REQUIRED)
     117FIND_PACKAGE(CEGUI 0.6 REQUIRED)
    118118
    119119##### OpenAL #####
  • code/branches/kicklib/src/libraries/util/Exception.cc

    r7401 r7947  
    101101        catch (const CEGUI::Exception& ex)
    102102        {
    103 #if CEGUI_VERSION_MAJOR == 0 && CEGUI_VERSION_MINOR < 6
    104             return GeneralException(ex.getMessage().c_str()).getDescription();
    105 #else
    106103            return GeneralException(ex.getMessage().c_str(), ex.getLine(),
    107104                ex.getFileName().c_str(), ex.getName().c_str()).getDescription();
    108 #endif
    109105        }
    110106        catch (...)
Note: See TracChangeset for help on using the changeset viewer.