diff options
author | yuuko <yuuko@partyvan.io> | 2024-08-25 14:26:48 -0700 |
---|---|---|
committer | yuuko <yuuko@partyvan.io> | 2024-08-25 14:37:35 -0700 |
commit | 2b2802fc59798480872b9e03b5c2187394c6fbc6 (patch) | |
tree | de16f41d1e99647e27f33e7982908f4ecac8efce /configure.py | |
parent | a5b0ca64d425610ba3a6c51d1ccfe3983ab09dd1 (diff) |
treewide: nuke vendoring, make -> ambuild
“GOODBYE DIRT” -derek bum
Diffstat (limited to 'configure.py')
-rw-r--r-- | configure.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.py b/configure.py new file mode 100644 index 0000000..1d14360 --- /dev/null +++ b/configure.py @@ -0,0 +1,10 @@ +import sys +from ambuild2 import run + +builder = run.PrepareBuild(sourcePath = sys.path[0]) + +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.options.add_option('--enable-debug', action='store_const', const='1', dest='debug', help='Enable debugging symbols') +builder.options.add_option('--enable-optimize', action='store_const', const='1', dest='opt', help='Enable optimization') +builder.Configure() |