diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 4e871d690..b187d6b84 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1380,7 +1380,7 @@ void cmLocalGenerator::AddCompileOptions( // COMPILE_FLAGS are not escaped for historical reasons. this->AppendFlags(flags, targetFlags); } - std::vector opts; // TODO: Emitted. + std::vector opts; target->GetCompileOptions(opts, config); for(std::vector::const_iterator i = opts.begin(); i != opts.end(); ++i) diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index f8cecd11d..1df9f2bde 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -3203,7 +3203,7 @@ static void processIncludeDirectories(cmTarget *tgt, { e << "Target \"" << (*it)->TargetName << "\" contains relative " "path in its INTERFACE_INCLUDE_DIRECTORIES:\n" - " \"" << *li << "\" "; + " \"" << *li << "\""; } else {