• R/O
  • SSH

cmake_tools: Commit

This library contains CMake code (files with .cmake extentions),
Python scripts and it is intended for simplification different actions
on the organization of the build environment.


Commit MetaInfo

Revision32b25b7b4b0c864d1be430c1a5f0b61266e6efac (tree)
Time2017-03-26 08:24:29
Authors.gusarov
Commiters.gusarov

Log Message

Unix: Clear screen before any output. I.e. don't lose debug output.

Change Summary

Incremental Difference

diff -r 12846309592b -r 32b25b7b4b0c scripts/build/common.py
--- a/scripts/build/common.py Sun Mar 26 00:02:14 2017 +0300
+++ b/scripts/build/common.py Sun Mar 26 02:24:29 2017 +0300
@@ -230,14 +230,14 @@
230230 fs.cleanDir(buildDir)
231231 fs.makeSurePathExists(buildDir)
232232
233- cmdLine.append(cmakeProjectDir)
234- #print(cmdLine)
235-
236233 # If we rebuild the whole project when we are ready to get a lot of new messages
237234 # It's better to get them at the top of screen to analyse
238235 if sys.platform != 'win32':
239236 subprocess.check_call(['reset'])
240237
238+ cmdLine.append(cmakeProjectDir)
239+ #print(cmdLine)
240+
241241 os.chdir(buildDir)
242242 subprocess.check_call(cmdLine)
243243 else:
Show on old repository browser