CMake now generate verbose makefile.
This is better for debugging.
This commit is contained in:
parent
ffe1c2ae5d
commit
013c1d36cf
|
@ -425,7 +425,7 @@ class CMakeMixin(MakeMixin):
|
||||||
@command("configure")
|
@command("configure")
|
||||||
def _configure(self, context):
|
def _configure(self, context):
|
||||||
context.try_skip(self.build_path)
|
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(
|
command = command.format(
|
||||||
configure_option = "{} {}".format(self.buildEnv.cmake_option, self.configure_option),
|
configure_option = "{} {}".format(self.buildEnv.cmake_option, self.configure_option),
|
||||||
install_dir = self.buildEnv.install_dir,
|
install_dir = self.buildEnv.install_dir,
|
||||||
|
|
Loading…
Reference in New Issue