diff options
author | Brad King <brad.king@kitware.com> | 2011-06-08 19:44:44 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-06-08 19:44:44 (GMT) |
commit | 98dc13e5139e53446febd01c754430b9edf09575 (patch) | |
tree | faa2638cee4817ddc92854f0b38dfd82466df1f2 /Source/cmSystemTools.h | |
parent | 45adc8e8c16127f9d12b5c59a37fb9eeb492cf74 (diff) | |
parent | f09ba0f1a2dbae3bca99b35b7d8c26c457c5824c (diff) | |
download | CMake-98dc13e5139e53446febd01c754430b9edf09575.zip CMake-98dc13e5139e53446febd01c754430b9edf09575.tar.gz CMake-98dc13e5139e53446febd01c754430b9edf09575.tar.bz2 |
Merge topic 'xcode-source_groups-folders-issue-10039'
f09ba0f Fix style errors added by parent and grandparent
eeeeca1 XCode: Support target folders on XCode.
59ed84e Xcode: Support multiple level nesting of XCode folders (#10039)
d0a403f CMake: Move tokenize to cmSystemTools
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index fc85d4a..ce49959 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -444,6 +444,9 @@ public: /** Remove a directory; repeat a few times in case of locked files. */ static bool RepeatedRemoveDirectory(const char* dir); + /** Tokenize a string */ + static std::vector<std::string> tokenize(const std::string& str, + const std::string& sep); private: static bool s_ForceUnixPaths; static bool s_RunCommandHideConsole; |