Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 12, 2011, 11:54:35 PM (13 years ago)
Author:
landauf
Message:

added support for boost 1.46 and adjusted code to work with the 3rd version of boost::filesystem

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/kicklib/src/libraries/core/GraphicsManager.cc

    r7948 r8066  
    243243        // Use backslash paths on Windows! file_string() already does that though.
    244244        for (unsigned int i = 0; i < plugins.size(); ++i)
     245#if BOOST_FILESYSTEM_VERSION < 3
    245246            ogreRoot_->loadPlugin((folder / plugins[i]).file_string());
     247#else
     248            ogreRoot_->loadPlugin((folder / plugins[i]).string());
     249#endif
    246250    }
    247251
Note: See TracChangeset for help on using the changeset viewer.