9 configs
= ['Debug', 'Release']
10 solutions
= ['../../../Build/Targets/x86-microsoft-win32-vs2008/Platinum.sln']
13 opts
, args
= getopt
.getopt(sys
.argv
[1:], "b:rc")
14 except getopt
.GetoptError
, (msg
, opt
):
15 print 'No build_config, defaulting to build all'
22 def CallVsMake(sln
, cfg
):
23 cmd
= 'python VsMake.py -s %s -b %s' % (sln
, cfg
)
25 retVal
= subprocess
.call(cmd
.split())
30 if 'config' not in locals() and 'config' not in globals():
31 print '************ Building all configurations **************'
35 print '************ Building configuration=' + config
+ ' ****************'
36 CallVsMake(sln
, config
)