diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2018-04-03 12:17:14 +0200 |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2018-04-03 17:20:30 +0200 |
commit | 65203ce407f589a6ba148baf64b07ada09205030 (patch) | |
tree | 5b7955575ae7f578ee7f3f8afa822944ef93e2a6 /Source/cmQtAutoGenerator.cxx | |
parent | 14a86c9ea7efae1b3acb01bc79f2f1f5ef23c5f1 (diff) | |
download | cmake-65203ce407f589a6ba148baf64b07ada09205030.tar.gz |
Autogen: Protected calls to cmSystemTools::Split/JoinPath
Diffstat (limited to 'Source/cmQtAutoGenerator.cxx')
-rw-r--r-- | Source/cmQtAutoGenerator.cxx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Source/cmQtAutoGenerator.cxx b/Source/cmQtAutoGenerator.cxx index 7f133ab661..1716189a2c 100644 --- a/Source/cmQtAutoGenerator.cxx +++ b/Source/cmQtAutoGenerator.cxx @@ -160,6 +160,29 @@ std::string cmQtAutoGenerator::FileSystem::CollapseCombinedPath( return cmSystemTools::CollapseCombinedPath(dir, file); } +void cmQtAutoGenerator::FileSystem::SplitPath( + const std::string& p, std::vector<std::string>& components, + bool expand_home_dir) +{ + std::lock_guard<std::mutex> lock(Mutex_); + cmSystemTools::SplitPath(p, components, expand_home_dir); +} + +std::string cmQtAutoGenerator::FileSystem::JoinPath( + const std::vector<std::string>& components) +{ + std::lock_guard<std::mutex> lock(Mutex_); + return cmSystemTools::JoinPath(components); +} + +std::string cmQtAutoGenerator::FileSystem::JoinPath( + std::vector<std::string>::const_iterator first, + std::vector<std::string>::const_iterator last) +{ + std::lock_guard<std::mutex> lock(Mutex_); + return cmSystemTools::JoinPath(first, last); +} + bool cmQtAutoGenerator::FileSystem::FileExists(std::string const& filename) { std::lock_guard<std::mutex> lock(Mutex_); |