Merge topic 'ninja_add_custom_command_windows'

e7c58f6 Ninja: use cd /D to set directory on Windows
This commit is contained in:
Brad King 2013-05-16 14:37:09 -04:00 committed by CMake Topic Stage
commit 8ec007083e
1 changed files with 6 additions and 1 deletions

View File

@ -302,7 +302,12 @@ void cmLocalNinjaGenerator::AppendCustomCommandLines(const cmCustomCommand *cc,
wd = this->GetMakefile()->GetStartOutputDirectory();
cmOStringStream cdCmd;
cdCmd << "cd " << this->ConvertToOutputFormat(wd, SHELL);
#ifdef _WIN32
std::string cdStr = "cd /D ";
#else
std::string cdStr = "cd ";
#endif
cdCmd << cdStr << this->ConvertToOutputFormat(wd, SHELL);
cmdLines.push_back(cdCmd.str());
}
for (unsigned i = 0; i != ccg.GetNumberOfCommands(); ++i) {