diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-06 15:10:46 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-06 15:10:46 (GMT) |
commit | 8aa3c35dadb67d63873d44a9ef55391e419376a1 (patch) | |
tree | cfcd77fefb78a136c8e312dedf1fa0ab1edf92e3 /Source/cmLinkLibrariesCommand.cxx | |
parent | 4651dbcfc64836988649c2ca7e3e30c811723eb2 (diff) | |
download | CMake-8aa3c35dadb67d63873d44a9ef55391e419376a1.zip CMake-8aa3c35dadb67d63873d44a9ef55391e419376a1.tar.gz CMake-8aa3c35dadb67d63873d44a9ef55391e419376a1.tar.bz2 |
ENH: add suport for semi-colon separated list variables
Diffstat (limited to 'Source/cmLinkLibrariesCommand.cxx')
-rw-r--r-- | Source/cmLinkLibrariesCommand.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmLinkLibrariesCommand.cxx b/Source/cmLinkLibrariesCommand.cxx index e3d7453..1cc8b17 100644 --- a/Source/cmLinkLibrariesCommand.cxx +++ b/Source/cmLinkLibrariesCommand.cxx @@ -17,13 +17,15 @@ #include "cmLinkLibrariesCommand.h" // cmLinkLibrariesCommand -bool cmLinkLibrariesCommand::InitialPass(std::vector<std::string> const& args) +bool cmLinkLibrariesCommand::InitialPass(std::vector<std::string> const& argsIn) { - if(args.size() < 1 ) + if(argsIn.size() < 1 ) { this->SetError("called with incorrect number of arguments"); return false; } + std::vector<std::string> args; + cmSystemTools::ExpandListArguments(argsIn, args); // add libraries, nothe that there is an optional prefix // of debug and optimized than can be used for(std::vector<std::string>::const_iterator i = args.begin(); |