Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
linphone-cmake-builder
Commits
a4d5721c
Commit
a4d5721c
authored
Apr 09, 2015
by
Ghislain MARY
Browse files
Remove windows phone targets (to be handled in the Windows Phone project).
parent
3d27089a
Changes
1
Hide whitespace changes
Inline
Side-by-side
prepare.py
View file @
a4d5721c
...
...
@@ -163,23 +163,6 @@ class PythonRaspberryTarget(Target):
self
.
config_file
=
'configs/config-python-raspberry.cmake'
self
.
toolchain_file
=
'toolchains/toolchain-raspberry.cmake'
class
WindowsPhoneTarget
(
Target
):
def
__init__
(
self
,
arch
,
platform
):
Target
.
__init__
(
self
,
'windowsphone-'
+
arch
)
self
.
config_file
=
'configs/config-windowsphone.cmake'
self
.
generator
=
'Visual Studio 12 2013'
self
.
platform_name
=
platform
self
.
output
=
'OUTPUT/liblinphone-windowsphone-sdk/'
+
arch
self
.
additional_args
=
[
'-DCMAKE_SYSTEM_NAME=WindowsPhone'
,
'-DCMAKE_SYSTEM_VERSION=8.0'
,
'-DLINPHONE_BUILDER_EXTERNAL_SOURCE_PATH=../submodules'
]
class
WindowsPhoneARMTarget
(
WindowsPhoneTarget
):
def
__init__
(
self
):
WindowsPhoneTarget
.
__init__
(
self
,
'arm'
,
'ARM'
)
class
WindowsPhoneX86Target
(
WindowsPhoneTarget
):
def
__init__
(
self
):
WindowsPhoneTarget
.
__init__
(
self
,
'x86'
,
None
)
targets
=
{}
targets
[
'bb10-arm'
]
=
BB10armTarget
()
...
...
@@ -190,8 +173,6 @@ targets['ios-armv7'] = IOSarmv7Target()
targets
[
'ios-armv7s'
]
=
IOSarmv7sTarget
()
targets
[
'python'
]
=
PythonTarget
()
targets
[
'python-raspberry'
]
=
PythonRaspberryTarget
()
targets
[
'windowsphone-arm'
]
=
WindowsPhoneARMTarget
()
targets
[
'windowsphone-x86'
]
=
WindowsPhoneX86Target
()
target_names
=
sorted
(
targets
.
keys
())
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment