diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-02-16 23:47:30 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-02-16 23:47:30 (GMT) |
commit | 6bf064d41c0baba1b0afc33f3d86222938d2a374 (patch) | |
tree | 07fd34dd6d36aa44220aee616b58b0d26a78104b /Source/cmCTest.cxx | |
parent | cb73410ccb8d2c05085b8fc5551215214bf12edd (diff) | |
download | CMake-6bf064d41c0baba1b0afc33f3d86222938d2a374.zip CMake-6bf064d41c0baba1b0afc33f3d86222938d2a374.tar.gz CMake-6bf064d41c0baba1b0afc33f3d86222938d2a374.tar.bz2 |
ENH: use ALL_BUILD target
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 1e25ba1..8e1e88d 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -1884,15 +1884,14 @@ int cmCTest::RunCMakeAndTest(std::string* outstring) makeCommand += " -project "; makeCommand += m_BuildProject; makeCommand += ".xcode"; - makeCommand += " build "; + makeCommand += " build -target "; if (m_BuildTarget.size()) { - makeCommand += "-target "; makeCommand += m_BuildTarget; } else { - makeCommand += "-alltargets "; + makeCommand += "ALL_BUILD "; } makeCommand += " -buildstyle Development "; } |