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.h

    r3343 r3345  
    9090            //! Returns the path to the log files as boost::filesystem::path
    9191            static const boost::filesystem::path& getLogPath();
     92            //! Returns the path to the root folder as boost::filesystem::path
     93            static const boost::filesystem::path& getRootPath();
    9294            //! Returns the path to the data files as std::string
    9395            static std::string getMediaPathString();
     
    9698            //! Returns the path to the log files as std::string
    9799            static std::string getLogPathString();
     100            //! Returns the path to the root folder as std::string
     101            static std::string getRootPathString();
     102
     103            static bool isDevelopmentRun() { return getInstance().bDevRun_; }
    98104
    99105        private:
     
    114120            TclThreadManager*     tclThreadManager_;
    115121
    116             bool                  isDevBuild_;          //!< True for builds in the build directory (not installed)
     122            bool                  bDevRun_;             //!< True for runs in the build directory (not installed)
    117123            bool                  bGraphicsLoaded_;
    118124            CoreConfiguration*    configuration_;
Note: See TracChangeset for help on using the changeset viewer.