BUG: fix for bug 6234, use cd /d so that drives can be changed.

This commit is contained in:
Bill Hoffman 2008-01-15 11:56:41 -05:00
parent 34c04d6d02
commit feea7133ef
1 changed files with 8 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#include "cmMakefile.h"
#include "cmSourceFile.h"
#include "cmSystemTools.h"
#include "windows.h"
//----------------------------------------------------------------------------
cmLocalVisualStudioGenerator::cmLocalVisualStudioGenerator()
@ -143,6 +144,13 @@ cmLocalVisualStudioGenerator
script += newline;
newline = newline_text;
script += "cd ";
OSVERSIONINFO osv;
osv.dwOSVersionInfoSize = sizeof(osv);
GetVersionEx(&osv);
if(osv.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS)
{
script += "/d ";
}
script += this->Convert(workingDirectory, START_OUTPUT, SHELL);
// Change the working drive.