add ifdef for windows function

This commit is contained in:
Bill Hoffman 2002-02-21 08:43:19 -05:00
parent 7cf06be12e
commit 59714406cc
1 changed files with 2 additions and 0 deletions

View File

@ -149,6 +149,7 @@ int main (int argc, char *argv[])
// MSDEV 7.0 .NET
else if (lowerCaseCommand.find("devenv") != std::string::npos)
{
#if defined(_WIN32) && !defined(__CYGWIN__)
if(makeCommand.find(' ') != std::string::npos)
{
char *buffer = new char[makeCommand.size()+1];
@ -159,6 +160,7 @@ int main (int argc, char *argv[])
}
delete [] buffer;\
}
#endif
makeCommand += " ";
makeCommand += projectName;
makeCommand += ".sln /rebuild Debug /project ALL_BUILD";