Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
8e2ec4cc
Commit
8e2ec4cc
authored
Aug 23, 2015
by
Ehsan Azarnasab
Browse files
option to pass build system generator to cmake
parent
2f7958e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
setup.py
setup.py
+9
-0
No files found.
setup.py
View file @
8e2ec4cc
...
...
@@ -19,6 +19,7 @@ To exclude/include certain options in the cmake config use --yes and --no:
Additional options:
--debug: makes a debug build
--cmake: path to specific cmake executable
--G or -G: name of a build system generator (equivalent of passing -G "name" to cmake)
"""
from
__future__
import
print_function
...
...
@@ -72,12 +73,20 @@ def _get_options():
_cmake_extra
.
append
(
'-D{arg}=yes'
.
format
(
arg
=
arg
.
trim
()))
elif
opt_key
==
'no'
:
_cmake_extra
.
append
(
'-D{arg}=no'
.
format
(
arg
=
arg
.
trim
()))
elif
opt_key
==
'G'
:
_cmake_extra
.
append
(
'-G {gen}'
.
format
(
gen
=
arg
.
trim
()))
if
opt_key
:
sys
.
argv
.
remove
(
arg
)
opt_key
=
None
continue
# Keep -G to resemble cmake's
if
arg
==
'-G'
or
arg
.
lower
()
==
'--g'
:
opt_key
=
'G'
sys
.
argv
.
remove
(
arg
)
continue
if
not
arg
.
startswith
(
'--'
):
continue
...
...
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