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
f43fcdf6
Commit
f43fcdf6
authored
Apr 22, 2016
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace -os option of prepare.py by -sys option to build using the dependencies from the system.
parent
1cd33b6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
prepare.py
prepare.py
+3
-3
No files found.
prepare.py
View file @
f43fcdf6
...
...
@@ -169,7 +169,7 @@ def main(argv=None):
argparser
.
add_argument
(
'-L'
,
'--list-cmake-variables'
,
help
=
"List non-advanced CMake cache variables."
,
action
=
'store_true'
,
dest
=
'list_cmake_variables'
)
argparser
.
add_argument
(
'-
os'
,
'--only-submodules'
,
help
=
"Build only submodules (finding all
dependencies on the system."
,
action
=
'store_true'
)
'-
sys'
,
'--use-system-dependencies'
,
help
=
"Find
dependencies on the system."
,
action
=
'store_true'
)
argparser
.
add_argument
(
'-p'
,
'--package'
,
help
=
"Build an installation package (only on Mac OSX and Windows)."
,
action
=
'store_true'
)
argparser
.
add_argument
(
...
...
@@ -181,8 +181,8 @@ def main(argv=None):
args
,
additional_args
=
argparser
.
parse_known_args
()
if
args
.
only_submodul
es
:
additional_args
+=
[
"-DLINPHONE_BUILDER_
BUILD_ONLY_EXTERNAL_SOURCE_PATH
=YES"
]
if
args
.
use_system_dependenci
es
:
additional_args
+=
[
"-DLINPHONE_BUILDER_
USE_SYSTEM_DEPENDENCIES
=YES"
]
if
args
.
all_codecs
:
additional_args
+=
[
"-DENABLE_GPL_THIRD_PARTIES=YES"
]
...
...
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