Warn user of current set of build options.
This commit is contained in:
parent
0747b5b9fe
commit
485381faaa
1 changed files with 6 additions and 0 deletions
|
@ -19,6 +19,12 @@ from glob import glob
|
|||
from subprocess import Popen, PIPE
|
||||
from SCons.Script import *
|
||||
|
||||
# Warn user of current set of build options.
|
||||
if os.path.exists('.scons-option-cache'):
|
||||
optfile = file('.scons-option-cache')
|
||||
print "Saved options:", optfile.read().replace("\n", ", ")[:-2]
|
||||
optfile.close()
|
||||
|
||||
#
|
||||
# Build-control options
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue