2014-08-19 19:14:48 +02:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et:
|
2013-09-01 19:02:53 +02:00
|
|
|
import sys
|
2014-08-19 19:14:48 +02:00
|
|
|
from ambuild2 import run
|
2013-09-01 19:02:53 +02:00
|
|
|
|
2014-08-19 19:14:48 +02:00
|
|
|
builder = run.PrepareBuild(sourcePath = sys.path[0])
|
|
|
|
builder.default_build_folder = 'obj-' + builder.target_platform
|
|
|
|
builder.options.add_option('--enable-debug', action='store_const', const='1', dest='debug',
|
2013-09-01 19:02:53 +02:00
|
|
|
help='Enable debugging symbols')
|
2014-08-19 19:14:48 +02:00
|
|
|
builder.options.add_option('--enable-optimize', action='store_const', const='1', dest='opt',
|
2013-09-01 19:02:53 +02:00
|
|
|
help='Enable optimization')
|
2014-08-19 19:14:48 +02:00
|
|
|
builder.options.add_option('--mms-path', type=str, dest='mms_path', default=None,
|
|
|
|
help='Path to Metamod:Source')
|
|
|
|
builder.options.add_option('--sm-path', type=str, dest='sm_path', default=None,
|
|
|
|
help='Path to Sourcemod')
|
|
|
|
builder.Configure()
|