mirror of
https://github.com/Kitware/CMake.git
synced 2026-08-09 09:12:00 +00:00
BUG: run make all on unix not make exename
This commit is contained in:
@@ -47,9 +47,11 @@ int main (int argc, char *argv[])
|
||||
// now build the test
|
||||
std::string makeCommand = MAKEPROGRAM;
|
||||
makeCommand += " ";
|
||||
makeCommand += executableName;
|
||||
#ifdef _WIN32
|
||||
makeCommand += executableName;
|
||||
makeCommand += ".dsw /MAKE \"ALL_BUILD - Release\" /REBUILD";
|
||||
#else
|
||||
makeCommand += " all";
|
||||
#endif
|
||||
if (!cmSystemTools::RunCommand(makeCommand.c_str(), output))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user