mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
Handle devices and simulators virtual targets in prepare.py.
This commit is contained in:
parent
93e57c0fb7
commit
28235ffd77
2 changed files with 8 additions and 3 deletions
|
|
@ -84,10 +84,15 @@ ios_targets = {
|
|||
'arm64': IOSarm64Target()
|
||||
}
|
||||
|
||||
ios_virtual_targets = {
|
||||
'devices': ['armv7', 'arm64'],
|
||||
'simulators': ['i386', 'x86_64']
|
||||
}
|
||||
|
||||
class IOSPreparator(prepare.Preparator):
|
||||
|
||||
def __init__(self, targets=ios_targets):
|
||||
prepare.Preparator.__init__(self, targets)
|
||||
def __init__(self, targets=ios_targets, virtual_targets=ios_virtual_targets):
|
||||
prepare.Preparator.__init__(self, targets, virtual_targets=virtual_targets)
|
||||
self.veryclean = True
|
||||
self.show_gpl_disclaimer = True
|
||||
self.argparser.add_argument('-ac', '--all-codecs', help="Enable all codecs, including the non-free ones. Final application must comply with their respective license (see README.md).", action='store_true')
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 852b8d37ff836e70313afb5b721ebd90977b82fe
|
||||
Subproject commit 3645c90a20ce865cfaca62b88a981c1cd1c27a87
|
||||
Loading…
Add table
Reference in a new issue