summaryrefslogtreecommitdiff
path: root/guix/build/cmake-build-system.scm
diff options
context:
space:
mode:
author宋文武 <iyzsong@gmail.com>2015-02-27 19:10:40 +0800
committer宋文武 <iyzsong@gmail.com>2015-02-27 19:10:40 +0800
commit50915d2c2ed050c40db51988106ad46d61039d56 (patch)
treef78b30d8749abf9d6bf1ad01bfd8c855cb55c5a5 /guix/build/cmake-build-system.scm
parentf1886b51bd86bd80a47c5b4aafc16039126315e8 (diff)
downloadguix-patches-50915d2c2ed050c40db51988106ad46d61039d56.tar
guix-patches-50915d2c2ed050c40db51988106ad46d61039d56.tar.gz
build-system/cmake: Enable verbose output from Makefile builds.
* guix/build/cmake-build-system.scm (configure): Pass -DCMAKE_VERBOSE_MAKEFILE=ON to cmake.
Diffstat (limited to 'guix/build/cmake-build-system.scm')
-rw-r--r--guix/build/cmake-build-system.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/build/cmake-build-system.scm b/guix/build/cmake-build-system.scm
index 07fd8df481..08ae73ef8d 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"))