Skip to content
Snippets Groups Projects
Commit 8f26ed43 authored by Brad King's avatar Brad King
Browse files

Merge branch 'fix-try_compile-library-spaces' into release

parents aad04efe e5375442
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv)
++i)
{
extraArgs++;
libsToLink += argv[i] + " ";
libsToLink += "\"" + cmSystemTools::TrimWhitespace(argv[i]) + "\" ";
cmTarget *tgt = this->Makefile->FindTargetToUse(argv[i].c_str());
if (!tgt)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment