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
d984a1f4
Commit
d984a1f4
authored
Jan 17, 2018
by
Davis King
Browse files
Added more logging to setup.py
parent
63f430ab
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
setup.py
setup.py
+2
-1
No files found.
setup.py
View file @
d984a1f4
...
@@ -147,8 +147,9 @@ class CMakeBuild(build_ext):
...
@@ -147,8 +147,9 @@ class CMakeBuild(build_ext):
if
not
os
.
path
.
exists
(
build_folder
):
if
not
os
.
path
.
exists
(
build_folder
):
os
.
makedirs
(
build_folder
)
os
.
makedirs
(
build_folder
)
print
(
"Invoking CMake: '{}'"
.
format
([
'cmake'
,
ext
.
sourcedir
]
+
cmake_args
))
print
(
"Invoking CMake
setup
: '{}'"
.
format
([
'cmake'
,
ext
.
sourcedir
]
+
cmake_args
))
subprocess
.
check_call
([
'cmake'
,
ext
.
sourcedir
]
+
cmake_args
,
cwd
=
build_folder
)
subprocess
.
check_call
([
'cmake'
,
ext
.
sourcedir
]
+
cmake_args
,
cwd
=
build_folder
)
print
(
"Invoking CMake build: '{}'"
.
format
([
'cmake'
,
'--build'
,
'.'
]
+
build_args
))
subprocess
.
check_call
([
'cmake'
,
'--build'
,
'.'
]
+
build_args
,
cwd
=
build_folder
)
subprocess
.
check_call
([
'cmake'
,
'--build'
,
'.'
]
+
build_args
,
cwd
=
build_folder
)
...
...
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