2009-08-30 10:38:28 +02:00
|
|
|
# vim: set ts=2 sw=2 tw=99 noet:
|
|
|
|
import sys
|
2013-12-30 23:50:56 +01:00
|
|
|
try:
|
|
|
|
from ambuild2 import run
|
|
|
|
except:
|
|
|
|
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)
|
2009-08-30 10:38:28 +02:00
|
|
|
|
2013-12-30 23:50:56 +01:00
|
|
|
run = run.PrepareBuild(sourcePath=sys.path[0])
|
|
|
|
run.default_build_folder = 'obj-' + run.target_platform
|
2014-05-27 06:30:43 +02:00
|
|
|
run.options.add_option('--hl2sdk-root', type=str, dest='hl2sdk_root', default=None,
|
|
|
|
help='Root search folder for HL2SDKs')
|
|
|
|
run.options.add_option('--mysql-path', type=str, dest='mysql_path', default=None,
|
|
|
|
help='Path to MySQL 5')
|
|
|
|
run.options.add_option('--mms-path', type=str, dest='mms_path', default=None,
|
|
|
|
help='Path to Metamod:Source')
|
2009-08-30 10:38:28 +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-17 08:40:04 +01:00
|
|
|
run.options.add_option('--no-mysql', action='store_false', default=True, dest='hasMySql',
|
|
|
|
help='Disable building MySQL extension')
|
2013-03-14 02:26:08 +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)')
|
2013-12-30 23:51:02 +01:00
|
|
|
run.options.add_option('--breakpad-dump', action='store_true', dest='breakpad_dump',
|
|
|
|
default=False, help='Dump and upload breakpad symbols')
|
2013-12-30 23:50:56 +01:00
|
|
|
run.Configure()
|