1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Antonio Valentino <antonio.valentino@tiscali.it>
Date: Sun, 3 Dec 2023 14:17:28 +0000
Subject: Verbose cmake build
Forwarded: not-needed
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 1c15e31..6d7f72b 100755
--- a/setup.py
+++ b/setup.py
@@ -169,7 +169,7 @@ def run_make(root_dir):
build_dir = os.path.join(root_dir, 'build')
os.chdir(build_dir)
try:
- ds.spawn(['make'])
+ ds.spawn(['make', 'VERBOSE=TRUE'])
except ds.DistutilsExecError:
print("Error while running make")
print("run 'setup.py build --help' for build options")
|