2013-11-18 18:46:46 +01:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et:
|
2010-05-14 07:34:36 +02:00
|
|
|
import sys
|
2013-11-18 18:46:46 +01:00
|
|
|
try:
|
2014-05-27 07:41:20 +02:00
|
|
|
from ambuild2 import run
|
2013-11-18 18:46:46 +01:00
|
|
|
except:
|
2014-05-27 07:41:20 +02:00
|
|
|
try:
|
|
|
|
import ambuild
|
|
|
|
sys.stderr.write('It looks like you have AMBuild 1 installed, but this project uses AMBuild 2.\n')
|
|
|
|
sys.stderr.write('Upgrade to the latest version of AMBuild to continue.\n')
|
|
|
|
except:
|
|
|
|
sys.stderr.write('AMBuild must be installed to build this project.\n')
|
|
|
|
sys.stderr.write('http://www.alliedmods.net/ambuild\n')
|
|
|
|
sys.exit(1)
|
2010-05-14 07:34:36 +02:00
|
|
|
|
2013-11-18 18:46:46 +01:00
|
|
|
run = run.PrepareBuild(sourcePath=sys.path[0])
|
|
|
|
run.default_build_folder = 'obj-' + run.target_platform
|
2014-05-27 07:41:20 +02:00
|
|
|
run.options.add_option('--hl2sdk-root', type=str, dest='hl2sdk_root', default=None,
|
|
|
|
help='Root search folder for HL2SDKs')
|
2010-05-14 07:34:36 +02:00
|
|
|
run.options.add_option('--enable-debug', action='store_const', const='1', dest='debug',
|
|
|
|
help='Enable debugging symbols')
|
|
|
|
run.options.add_option('--enable-optimize', action='store_const', const='1', dest='opt',
|
|
|
|
help='Enable optimization')
|
2013-03-24 05:12:16 +01:00
|
|
|
run.options.add_option('-s', '--sdks', default='all', dest='sdks',
|
|
|
|
help='Build against specified SDKs; valid args are "all", "present", or '
|
|
|
|
'comma-delimited list of engine names (default: %default)')
|
2015-09-25 03:58:00 +02:00
|
|
|
run.options.add_option('--enable-tests', default=False, dest='enable_tests', action='store_true',
|
|
|
|
help='Build tests.')
|
2016-01-31 18:16:13 +01:00
|
|
|
run.options.add_option('--breakpad-dump', action='store_true', dest='breakpad_dump',
|
|
|
|
default=False, help='Dump and upload breakpad symbols')
|
2013-11-18 18:46:46 +01:00
|
|
|
run.Configure()
|