diff options
author | Bartosz Kosiorek <bartosz.kosiorek@tomtom.com> | 2019-03-04 10:21:26 +0100 |
---|---|---|
committer | Bartosz Kosiorek <bartosz.kosiorek@tomtom.com> | 2019-03-04 10:44:14 +0100 |
commit | fdeb364a84f99fd1d1f34a929d02a86653ea364f (patch) | |
tree | d881f240214f7c081ed6ad8e324431098d63846b /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | b3955a08ab1af0e2f4dc8b42b2b387e474bc01db (diff) | |
download | cmake-fdeb364a84f99fd1d1f34a929d02a86653ea364f.tar.gz |
cmGlobalGenerator: Change case of methods from GeneratedMakeCommand struct
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index d457f60d1e..f091d90938 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -213,9 +213,9 @@ void cmGlobalVisualStudio7Generator::GenerateBuildCommand( makeCommand.RequiresOutputForward = (makeProgramLower.find("vcexpress") != std::string::npos); - makeCommand.add(makeProgramSelected); + makeCommand.Add(makeProgramSelected); - makeCommand.add(std::string(projectName) + ".sln"); + makeCommand.Add(std::string(projectName) + ".sln"); std::string realTarget = targetName; bool clean = false; if (realTarget == "clean") { @@ -223,11 +223,11 @@ void cmGlobalVisualStudio7Generator::GenerateBuildCommand( realTarget = "ALL_BUILD"; } - makeCommand.add((clean ? "/clean" : "/build")); - makeCommand.add((config.empty() ? "Debug" : config)); - makeCommand.add("/project"); - makeCommand.add((realTarget.empty() ? "ALL_BUILD" : realTarget)); - makeCommand.add(makeOptions.begin(), makeOptions.end()); + makeCommand.Add((clean ? "/clean" : "/build")); + makeCommand.Add((config.empty() ? "Debug" : config)); + makeCommand.Add("/project"); + makeCommand.Add((realTarget.empty() ? "ALL_BUILD" : realTarget)); + makeCommand.Add(makeOptions.begin(), makeOptions.end()); } ///! Create a local generator appropriate to this Global Generator |