File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 76
76
"steam" : False ,
77
77
78
78
# Whether our autoupdate functionality is enabled or not.
79
- "autoupdate" : True
79
+ "autoupdate" : True ,
80
+
81
+ # The distributor for this build.
82
+ "distributor" : "None"
80
83
}
81
84
82
85
# Architectures to build for. This is explicity left out of the command line
@@ -136,6 +139,11 @@ def parse_args(conf=DEFAULT_CONFIG):
136
139
action = argparse .BooleanOptionalAction ,
137
140
default = conf ["autoupdate" ])
138
141
142
+ parser .add_argument (
143
+ "--distributor" ,
144
+ help = "Sets the distributor for this build" ,
145
+ default = conf ["distributor" ])
146
+
139
147
parser .add_argument (
140
148
"--codesign" ,
141
149
help = "Code signing identity to use to sign the applications" ,
@@ -316,6 +324,7 @@ def build(config):
316
324
+ python_to_cmake_bool (config ["steam" ]),
317
325
"-DENABLE_AUTOUPDATE="
318
326
+ python_to_cmake_bool (config ["autoupdate" ]),
327
+ '-DDISTRIBUTOR=' + config ['distributor' ]
319
328
],
320
329
env = env , cwd = arch )
321
330
You can’t perform that action at this time.
0 commit comments