From 013c1d36cfab68c1a894c3d81b2f07253647b000 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 17 Jan 2017 11:42:01 +0100 Subject: [PATCH] CMake now generate verbose makefile. This is better for debugging. --- kiwix-build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiwix-build.py b/kiwix-build.py index d871ecc..59af2f6 100755 --- a/kiwix-build.py +++ b/kiwix-build.py @@ -425,7 +425,7 @@ class CMakeMixin(MakeMixin): @command("configure") def _configure(self, context): context.try_skip(self.build_path) - command = "cmake {configure_option} -DCMAKE_INSTALL_PREFIX={install_dir} -DCMAKE_INSTALL_LIBDIR={libdir} {source_path}" + command = "cmake {configure_option} -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DCMAKE_INSTALL_PREFIX={install_dir} -DCMAKE_INSTALL_LIBDIR={libdir} {source_path}" command = command.format( configure_option = "{} {}".format(self.buildEnv.cmake_option, self.configure_option), install_dir = self.buildEnv.install_dir,