diff options
Diffstat (limited to 'Source/ccommand.cxx')
-rw-r--r-- | Source/ccommand.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/ccommand.cxx b/Source/ccommand.cxx index 00893e6..e502c24 100644 --- a/Source/ccommand.cxx +++ b/Source/ccommand.cxx @@ -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)" |