diff options
author | Brad King <brad.king@kitware.com> | 2006-02-10 00:03:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-02-10 00:03:27 (GMT) |
commit | db0681d2f6368fa703253f19ce1b00baad2c9757 (patch) | |
tree | f697dfd6623cc8a31bd1b1df0020cdf6615f760c /Source/cmSystemTools.h | |
parent | 1b5e3f41369e8bf6a43c79eb62a4d636caab2b5a (diff) | |
download | CMake-db0681d2f6368fa703253f19ce1b00baad2c9757.zip CMake-db0681d2f6368fa703253f19ce1b00baad2c9757.tar.gz CMake-db0681d2f6368fa703253f19ce1b00baad2c9757.tar.bz2 |
ENH: Adding option to return empty arguments when expanding a list.
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 6c5be99..a07a7b8 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -39,7 +39,8 @@ public: static void ExpandList(std::vector<std::string> const& argsIn, std::vector<std::string>& argsOut); static void ExpandListArgument(const std::string& arg, - std::vector<std::string>& argsOut); + std::vector<std::string>& argsOut, + bool emptyArgs=false); /** * Look for and replace registry values in a string |