diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-02-24 17:38:55 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-08 13:05:38 -0500 |
commit | 6557382dcffef8ed6b11394cb65775d82f1c0aa7 (patch) | |
tree | df6ca4b09a1eabc6dc4033c8d640ada1ddc8623c /Source/cmBuildCommand.cxx | |
parent | 1a1b737c99ac0bd0d555fde2fadf77f08516a4ea (diff) | |
download | cmake-6557382dcffef8ed6b11394cb65775d82f1c0aa7.tar.gz |
stringapi: Use strings for program paths
Diffstat (limited to 'Source/cmBuildCommand.cxx')
-rw-r--r-- | Source/cmBuildCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmBuildCommand.cxx b/Source/cmBuildCommand.cxx index d8e1a2c22f..780ffa86ae 100644 --- a/Source/cmBuildCommand.cxx +++ b/Source/cmBuildCommand.cxx @@ -107,7 +107,7 @@ bool cmBuildCommand std::string makecommand = this->Makefile->GetLocalGenerator() ->GetGlobalGenerator()->GenerateCMakeBuildCommand(target, configuration, - 0, true); + "", true); this->Makefile->AddDefinition(variable, makecommand.c_str()); @@ -137,7 +137,7 @@ bool cmBuildCommand std::string makecommand = this->Makefile->GetLocalGenerator() ->GetGlobalGenerator()->GenerateCMakeBuildCommand("", configType.c_str(), - 0, true); + "", true); if(cacheValue) { |