mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-06 18:08:36 +00:00
* Modernize Build Scripts * Fix: Missing dot at extension file name. Reported by @FortyTwoFortyTwo * Clean Up: Removed unused variable * Copying No Longer Needed Copying the HL2SDK manifest is no longer needed. Requires latest AMBuild. * Allow Using Manifests From Project Folder Check if the manifest already exists in the project folder. If not, then search in the path specified by --hl2sdk-manifest-path. * Requested Changes by Kenzzer * Fix Differences Between SDK/No SDK
18 lines
958 B
Python
18 lines
958 B
Python
# 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('--sm-path', type=str, dest='sm_path', default=None,
|
|
help='Path to SourceMod')
|
|
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',
|
|
help='Enable debugging symbols')
|
|
parser.options.add_argument('--enable-optimize', action='store_const', const='1', dest='opt',
|
|
help='Enable optimization')
|
|
parser.options.add_argument('--targets', type=str, dest='targets', default=None,
|
|
help="Override the target architecture (use commas to separate multiple targets).")
|
|
parser.Configure() |