From 144fbb52c48f7b0b8ba6ad4c92f55c3f2ff20456 Mon Sep 17 00:00:00 2001 From: Noah Kim Date: Wed, 18 Oct 2023 20:33:06 -0400 Subject: [PATCH] Expose --disable-auto-versioning --- configure.py | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.py b/configure.py index f8b6d4a..be24b8a 100644 --- a/configure.py +++ b/configure.py @@ -34,4 +34,5 @@ parser.options.add_argument('--breakpad-dump', action='store_true', dest='breakp default=False, help='Dump and upload breakpad symbols') 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('--disable-auto-versioning', action='store_true', dest='disable_auto_versioning') parser.Configure()