mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Added more logging to setup.py
This commit is contained in:
parent
63f430abfc
commit
d984a1f42d
3
setup.py
3
setup.py
@ -147,8 +147,9 @@ class CMakeBuild(build_ext):
|
||||
if not os.path.exists(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)
|
||||
print("Invoking CMake build: '{}'".format(['cmake', '--build', '.'] + build_args))
|
||||
subprocess.check_call(['cmake', '--build', '.'] + build_args, cwd=build_folder)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user