Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 24, 2009, 9:31:31 PM (15 years ago)
Author:
rgrieder
Message:

Fixed installation: The Tcl script library should now be found in the installed version as well.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/resource/src/core/Core.cc

    r3343 r3345  
    231231
    232232    Core::Core(const std::string& cmdLine)
    233         : bGraphicsLoaded_(false)
     233        : bDevRun_(false)
     234        , bGraphicsLoaded_(false)
    234235    {
    235236        if (singletonRef_s != 0)
     
    435436    }
    436437
     438    /*static*/ const boost::filesystem::path& Core::getRootPath()
     439    {
     440        return getInstance().configuration_->rootPath_;
     441    }
     442    /*static*/ std::string Core::getRootPathString()
     443    {
     444        return getInstance().configuration_->rootPath_.string() + '/';
     445    }
     446
    437447    /**
    438448    @note
     
    544554        {
    545555            COUT(1) << "Running from the build tree." << std::endl;
    546             Core::isDevBuild_ = true;
     556            Core::bDevRun_ = true;
    547557            configuration_->mediaPath_  = ORXONOX_MEDIA_DEV_PATH;
    548558            configuration_->configPath_ = ORXONOX_CONFIG_DEV_PATH;
Note: See TracChangeset for help on using the changeset viewer.