summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmCTest.cxx21
1 files changed, 19 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index f3fbb41..4f17b25 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -1829,7 +1829,16 @@ int cmCTest::RunCMakeAndTest(std::string* outstring)
#endif
makeCommand += " ";
makeCommand += m_BuildProject;
- makeCommand += ".dsw /MAKE \"ALL_BUILD - ";
+ makeCommand += ".dsw /MAKE \"";
+ if(m_BuildTarget.size())
+ {
+ makeCommand += m_BuildTarget;
+ }
+ else
+ {
+ makeCommand += "ALL_BUILD";
+ }
+ makeCommand += " - ";
makeCommand += m_ConfigType;
if(m_BuildNoClean)
{
@@ -1860,7 +1869,15 @@ int cmCTest::RunCMakeAndTest(std::string* outstring)
{
makeCommand += "/rebuild ";
}
- makeCommand += m_ConfigType + " /project ALL_BUILD";
+ makeCommand += m_ConfigType + " /project ";
+ if(m_BuildTarget.size())
+ {
+ makeCommand += m_BuildTarget;
+ }
+ else
+ {
+ makeCommand += "ALL_BUILD";
+ }
}
else if (lowerCaseCommand.find("make") != std::string::npos)
{