-
Notifications
You must be signed in to change notification settings - Fork 6
/
configure.py
34 lines (31 loc) · 2.18 KB
/
configure.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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.
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('--mms-path', type=str, dest='mms_path', default=None,
help='Path to Metamod:Source')
parser.options.add_argument('--sm-path', type=str, dest='sm_path', default=None,
help='Path to SourceMod')
parser.options.add_argument('--enable-debug', action='store_const', const='1', dest='debug',
help='Enable debugging symbols')
parser.options.add_argument('--enable-optimize', action='store_const', const='1', dest='opt',
help='Enable optimization')
parser.options.add_argument('--enable-auto-versioning', action='store_false', dest='disable_auto_versioning',
default=True, help='Enables the auto versioning script')
parser.options.add_argument('-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)')
parser.options.add_argument('--targets', type=str, dest='targets', default=None,
help="Override the target architecture (use commas to separate multiple targets).")
parser.options.add_argument('--extension-only', action='store_true', dest='extension_only', default=False,
help='Only build the extension.')
parser.options.add_argument('--scripting-only', action='store_true', dest='scripting_only', default=False,
help='Only build and package the files required for scripting in SourcePawn.')
parser.options.add_argument('--spcomp-path', type=str, dest='spcomp_path', default=None,
help="Path to spcomp")
parser.options.add_argument('--sm-api-path', type=str, dest='smapi_path', default=None,
help="Path to base SourceMod includes folder")
parser.Configure()