Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
88ef8d86
Commit
88ef8d86
authored
Sep 14, 2017
by
Simon Morlat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add no-ui target to prepare.py, in order to run a native build without QT.
parent
67374972
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
+19
-2
prepare.py
prepare.py
+18
-1
bctoolbox
submodules/bctoolbox
+1
-1
No files found.
prepare.py
View file @
88ef8d86
...
...
@@ -73,6 +73,22 @@ class DesktopRaspberryTarget(prepare.Target):
]
class
NoUITarget
(
prepare
.
Target
):
def
__init__
(
self
,
group_builders
=
False
):
prepare
.
Target
.
__init__
(
self
,
'no-ui'
)
current_path
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
self
.
config_file
=
'configs/config-desktop.cmake'
self
.
output
=
'OUTPUT/'
+
self
.
name
self
.
external_source_path
=
os
.
path
.
join
(
current_path
,
'submodules'
)
self
.
packaging_args
=
[
"-DCMAKE_INSTALL_RPATH=$ORIGIN/../lib"
,
"-DENABLE_RELATIVE_PREFIX=YES"
]
class
PythonTarget
(
prepare
.
Target
):
def
__init__
(
self
):
...
...
@@ -101,7 +117,8 @@ desktop_targets = {
'desktop'
:
DesktopTarget
(),
'python'
:
PythonTarget
(),
'desktop-raspberry'
:
DesktopRaspberryTarget
(),
'python-raspberry'
:
PythonRaspberryTarget
()
'python-raspberry'
:
PythonRaspberryTarget
(),
'no-ui'
:
NoUITarget
()
}
class
DesktopPreparator
(
prepare
.
Preparator
):
...
...
bctoolbox
@
3070af7a
Subproject commit
ec7f3013cc46879dea9e4d490e70f4ab55bafe2c
Subproject commit
3070af7aa75f92e8ea38ec7f0e0024a74a669fa4
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