Changeset 8366 for code/trunk/src/libraries/core/PathConfig.h
- Timestamp:
- Apr 30, 2011, 9:31:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/PathConfig.h
r8351 r8366 114 114 115 115 //! Return true for runs in the build directory (not installed) 116 static bool isDevelopmentRun() { return getInstance().bDevRun_; }116 static bool buildDirectoryRun() { return getInstance().bBuildDirectoryRun_; } 117 117 118 118 private: … … 129 129 std::vector<std::string> getModulePaths(); 130 130 131 //! Path to the parent directory of the ones above if program was installed with relativ paths131 //! Path to the parent directory of the ones above if program was installed with relative paths 132 132 boost::filesystem::path& rootPath_; 133 133 boost::filesystem::path& executablePath_; //!< Path to the executable … … 138 138 boost::filesystem::path& logPath_; //!< Path to the log files folder 139 139 140 bool b DevRun_;//!< True for runs in the build directory (not installed)140 bool bBuildDirectoryRun_; //!< True for runs in the build directory (not installed) 141 141 static PathConfig* singletonPtr_s; 142 142 }; //tolua_export
Note: See TracChangeset
for help on using the changeset viewer.