2017-08-02 22:50:33 +02:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et:
|
|
|
|
import sys
|
|
|
|
from ambuild2 import run
|
|
|
|
|
|
|
|
# Simple extensions do not need to modify this file.
|
|
|
|
|
2025-03-07 18:44:54 +01:00
|
|
|
parser = run.BuildParser(sourcePath=sys.path[0], api='2.2')
|
|
|
|
parser.options.add_argument('--hl2sdk-root', type=str, dest='hl2sdk_root', default=None,
|
|
|
|
help='Root search folder for HL2SDKs')
|
|
|
|
parser.options.add_argument('--hl2sdk-manifest-path', type=str, dest='hl2sdk_manifest', default=None,
|
|
|
|
help='Path to HL2SDK Manifests')
|
|
|
|
parser.options.add_argument('--sm-path', type=str, dest='sm_path', default=None,
|
2017-08-02 22:50:33 +02:00
|
|
|
help='Path to SourceMod')
|
2025-03-07 18:44:54 +01:00
|
|
|
parser.options.add_argument('--mms-path', type=str, dest='mms_path', default=None,
|
|
|
|
help='Path to Metamod:Source')
|
|
|
|
|
|
|
|
parser.options.add_argument('--enable-debug', action='store_const', const='1', dest='debug',
|
2017-08-02 22:50:33 +02:00
|
|
|
help='Enable debugging symbols')
|
2025-03-07 18:44:54 +01:00
|
|
|
parser.options.add_argument('--enable-optimize', action='store_const', const='1', dest='opt',
|
2017-08-02 22:50:33 +02:00
|
|
|
help='Enable optimization')
|
2025-03-07 18:44:54 +01:00
|
|
|
parser.options.add_argument('-s', '--sdks', default='present', dest='sdks',
|
|
|
|
help='Build against specified SDKs; valid args are "none", "all", "present",'
|
|
|
|
' or comma-delimited list of engine names')
|
|
|
|
parser.options.add_argument('--targets', type=str, dest='targets', default=None,
|
|
|
|
help="Override the target architecture (use commas to separate multiple targets).")
|
|
|
|
parser.Configure()
|
2017-08-02 22:50:33 +02:00
|
|
|
|