File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -559,17 +559,18 @@ def main():
559
559
560
560
# Since we renamed firebase_app.framework to firebase.framework we add that
561
561
# to our list of targets.
562
- supported_targets .add ('firebase' )
562
+ targets = set (args .target )
563
+ targets .add ('firebase' )
563
564
564
565
# if we built for all architectures build universal framework as well.
565
- build_universal_framework (frameworks_path , supported_targets )
566
+ build_universal_framework (frameworks_path , targets )
566
567
567
568
# Build xcframeworks
568
569
xcframeworks_path = os .path .join (args .build_dir , 'xcframeworks' )
569
570
template_info_plist_path = os .path .join (args .source_dir , 'build_scripts' ,
570
571
'tvos' , 'Info_ios_and_tvos.plist' )
571
572
build_xcframeworks (frameworks_path , xcframeworks_path ,
572
- template_info_plist_path , supported_targets )
573
+ template_info_plist_path , targets )
573
574
574
575
575
576
def parse_cmdline_args ():
You can’t perform that action at this time.
0 commit comments