Skip to content

Commit

Permalink
Update conanfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kinokrt authored Dec 15, 2023
1 parent aec81f5 commit 27e1c0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def generate(self):
deps.generate()

toolchain = CMakeToolchain(self)
toolchain.variables["CMAKE_VERBOSE_MAKEFILE"] = True
#toolchain.variables["CMAKE_VERBOSE_MAKEFILE"] = True
if self.options.build:
toolchain.variables["CFG_ENABLE_TEST_SUITE"] = "ON"
toolchain.variables["JEMALLOC_PREFIX"] = self.options["jemalloc"].prefix
Expand All @@ -43,8 +43,8 @@ def build(self):
if self.options.build:
cmake.build()
if self.options.doc:
cmake.build("--keep-going", target="ipc_doc_public")
cmake.build("--keep-going", target="ipc_doc_full")
cmake.build("--keep-going", "--verbose=1", target="ipc_doc_public")
cmake.build("--keep-going", "--verbose=1", target="ipc_doc_full")

def requirements(self):
if self.options.build:
Expand Down

0 comments on commit 27e1c0e

Please sign in to comment.