mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-07 14:44:01 +00:00
Add desktop-raspberry target.
This commit is contained in:
parent
560c03b693
commit
9074241e7a
1 changed files with 13 additions and 0 deletions
13
prepare.py
13
prepare.py
|
|
@ -49,6 +49,18 @@ class DesktopTarget(prepare.Target):
|
|||
self.external_source_path = os.path.join(current_path, 'submodules')
|
||||
|
||||
|
||||
class DesktopRaspberryTarget(prepare.Target):
|
||||
|
||||
def __init__(self, group_builders=False):
|
||||
prepare.Target.__init__(self, 'desktop-raspberry')
|
||||
current_path = os.path.dirname(os.path.realpath(__file__))
|
||||
self.required_build_platforms = ['Linux']
|
||||
self.config_file = 'configs/config-desktop-raspberry.cmake'
|
||||
self.toolchain_file = 'toolchains/toolchain-raspberry.cmake'
|
||||
self.output = 'OUTPUT/' + self.name
|
||||
self.external_source_path = os.path.join(current_path, 'submodules')
|
||||
|
||||
|
||||
class PythonTarget(prepare.Target):
|
||||
|
||||
def __init__(self):
|
||||
|
|
@ -75,6 +87,7 @@ class PythonRaspberryTarget(prepare.Target):
|
|||
desktop_targets = {
|
||||
'desktop': DesktopTarget(),
|
||||
'python': PythonTarget(),
|
||||
'desktop-raspberry': DesktopRaspberryTarget(),
|
||||
'python-raspberry': PythonRaspberryTarget()
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue