summaryrefslogtreecommitdiffstats
path: root/Source/cmVisualStudioGeneratorOptions.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-07-07 18:31:46 (GMT)
committerBrad King <brad.king@kitware.com>2015-07-08 13:00:00 (GMT)
commitbb7eefe4dd4b1385b830ac0f784af883a3d91985 (patch)
tree55c846e7bb05db830fe52cb333957bd5e4583fde /Source/cmVisualStudioGeneratorOptions.cxx
parentcedd6e65d22870524eaee1394f023cf001d56aff (diff)
downloadCMake-bb7eefe4dd4b1385b830ac0f784af883a3d91985.zip
CMake-bb7eefe4dd4b1385b830ac0f784af883a3d91985.tar.gz
CMake-bb7eefe4dd4b1385b830ac0f784af883a3d91985.tar.bz2
cmOutputConverter: Adopt EscapeWindowsShellArgument method
Move it out of cmSystemTools and into cmOutputConverter.
Diffstat (limited to 'Source/cmVisualStudioGeneratorOptions.cxx')
-rw-r--r--Source/cmVisualStudioGeneratorOptions.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmVisualStudioGeneratorOptions.cxx b/Source/cmVisualStudioGeneratorOptions.cxx
index 6512fc2..c028ab7 100644
--- a/Source/cmVisualStudioGeneratorOptions.cxx
+++ b/Source/cmVisualStudioGeneratorOptions.cxx
@@ -1,4 +1,5 @@
#include "cmVisualStudioGeneratorOptions.h"
+#include "cmOutputConverter.h"
#include "cmSystemTools.h"
#include <cmsys/System.h>
#include "cmVisualStudio10TargetGenerator.h"
@@ -246,7 +247,7 @@ void cmVisualStudioGeneratorOptions::StoreUnknownFlag(const char* flag)
// This option is not known. Store it in the output flags.
this->FlagString += " ";
this->FlagString +=
- cmSystemTools::EscapeWindowsShellArgument(
+ cmOutputConverter::EscapeWindowsShellArgument(
flag,
cmsysSystem_Shell_Flag_AllowMakeVariables |
cmsysSystem_Shell_Flag_VSIDE);