From f4f3c68926492e5660c4e66d5cdcf2298619c1b9 Mon Sep 17 00:00:00 2001 From: Sebastian Holtermann Date: Sun, 11 Aug 2019 11:56:59 +0200 Subject: Source code: Use cmExpandList instead of cmSystemTools::ExpandListArgument --- Source/cmExtraCodeBlocksGenerator.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'Source/cmExtraCodeBlocksGenerator.cxx') diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 4146db8091..d13e3ce362 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -571,15 +571,13 @@ void cmExtraCodeBlocksGenerator::AppendTarget( std::string systemIncludeDirs = makefile->GetSafeDefinition( "CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_INCLUDE_DIRS"); if (!systemIncludeDirs.empty()) { - cmAppend(allIncludeDirs, - cmSystemTools::ExpandedListArgument(systemIncludeDirs)); + cmAppend(allIncludeDirs, cmExpandedList(systemIncludeDirs)); } systemIncludeDirs = makefile->GetSafeDefinition( "CMAKE_EXTRA_GENERATOR_C_SYSTEM_INCLUDE_DIRS"); if (!systemIncludeDirs.empty()) { - cmAppend(allIncludeDirs, - cmSystemTools::ExpandedListArgument(systemIncludeDirs)); + cmAppend(allIncludeDirs, cmExpandedList(systemIncludeDirs)); } std::vector::const_iterator end = -- cgit v1.2.1