diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-08-30 17:50:00 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-08-30 17:50:00 (GMT) |
commit | 3e2e0d5d6384cd0eb84c6fb7bb3059497159446d (patch) | |
tree | e2aa29d419e6b0ead3d33fed0eeaa1b85699943c /Source/cmSystemTools.h | |
parent | 4fb678e40dce4428374950d852b6070e8c720273 (diff) | |
download | CMake-3e2e0d5d6384cd0eb84c6fb7bb3059497159446d.zip CMake-3e2e0d5d6384cd0eb84c6fb7bb3059497159446d.tar.gz CMake-3e2e0d5d6384cd0eb84c6fb7bb3059497159446d.tar.bz2 |
BUG: fixes for mingw and CMakesetup with spaces in the source directory
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index e0fbffc..0cac0f0 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -253,6 +253,11 @@ public: { s_ForceUnixPaths = v; } + static bool GetForceUnixPaths() + { + return s_ForceUnixPaths; + } + // ConvertToOutputPath use s_ForceUnixPaths static std::string ConvertToOutputPath(const char* path); // ConvertToRunCommandPath does not use s_ForceUnixPaths and should |