2014-02-11 07:38:55 +00:00
|
|
|
# vim: set ts=2 sw=2 tw=99 et:
|
2014-02-08 09:14:15 +00:00
|
|
|
import sys
|
|
|
|
try:
|
2014-02-11 07:38:55 +00:00
|
|
|
from ambuild2 import run
|
2014-02-08 09:14:15 +00:00
|
|
|
except:
|
2014-02-11 07:38:55 +00: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)
|
2014-02-08 09:14:15 +00:00
|
|
|
|
|
|
|
run = run.PrepareBuild(sourcePath=sys.path[0])
|
|
|
|
run.default_build_folder = 'obj-' + run.target_platform
|
|
|
|
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')
|
|
|
|
run.options.add_option('--no-mysql', action='store_true', default=False, dest='disable_mysql',
|
|
|
|
help='Disable building MySQL extension')
|
|
|
|
run.options.add_option('--breakpad-dump', action='store_true', dest='breakpad_dump',
|
2014-02-11 07:38:55 +00:00
|
|
|
default=False, help='Dump and upload breakpad symbols')
|
2014-02-08 09:14:15 +00:00
|
|
|
run.options.add_option('--metamod', type='string', dest='metamod_path', default='',
|
2014-02-11 07:38:55 +00:00
|
|
|
help='Path to Metamod source code')
|
2014-02-08 09:14:15 +00:00
|
|
|
run.options.add_option('--hlsdk', type='string', dest='hlsdk_path', default='',
|
2014-02-11 07:38:55 +00:00
|
|
|
help='Path to the HLSDK')
|
2014-02-08 09:14:15 +00:00
|
|
|
run.options.add_option('--mysql', type='string', dest='mysql_path', default='',
|
2014-02-11 07:38:55 +00:00
|
|
|
help='Path to MySQL')
|
2014-02-08 09:14:15 +00:00
|
|
|
run.Configure()
|