mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-24 07:28:54 -06:00
ENH: also displays command output
This commit is contained in:
@@ -93,11 +93,13 @@ int main(int ac, char** av)
|
||||
time(&time_start);
|
||||
clock_start = clock();
|
||||
|
||||
cmSystemTools::RunCommand(command.c_str(), output, 0, false);
|
||||
cmSystemTools::RunCommand(command.c_str(), output, 0, true);
|
||||
|
||||
clock_finish = clock();
|
||||
time(&time_finish);
|
||||
|
||||
std::cout << output.c_str();
|
||||
|
||||
double clocks_per_sec = (double)CLOCKS_PER_SEC;
|
||||
std::cout << "Elapsed time: "
|
||||
<< (time_finish - time_start) << " s. (time)"
|
||||
|
||||
Reference in New Issue
Block a user