[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: build-system/cmake: Enable verbose output from Makefile builds.
From: |
??? |
Subject: |
02/02: build-system/cmake: Enable verbose output from Makefile builds. |
Date: |
Fri, 27 Feb 2015 11:25:30 +0000 |
iyzsong pushed a commit to branch core-updates
in repository guix.
commit 50915d2c2ed050c40db51988106ad46d61039d56
Author: 宋文武 <address@hidden>
Date: Fri Feb 27 19:10:40 2015 +0800
build-system/cmake: Enable verbose output from Makefile builds.
* guix/build/cmake-build-system.scm (configure): Pass
-DCMAKE_VERBOSE_MAKEFILE=ON to cmake.
---
guix/build/cmake-build-system.scm | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/guix/build/cmake-build-system.scm
b/guix/build/cmake-build-system.scm
index 07fd8df..08ae73e 100644
--- a/guix/build/cmake-build-system.scm
+++ b/guix/build/cmake-build-system.scm
@@ -57,6 +57,8 @@
"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=TRUE"
;; add (other) libraries of the project itself to rpath
,(string-append "-DCMAKE_INSTALL_RPATH=" out "/lib")
+ ;; enable verbose output from builds
+ "-DCMAKE_VERBOSE_MAKEFILE=ON"
,@configure-flags)))
(setenv "CMAKE_LIBRARY_PATH" (getenv "LIBRARY_PATH"))
(setenv "CMAKE_INCLUDE_PATH" (getenv "CPATH"))