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 14, 2023
1 parent 5733b71 commit 64511d2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@ class IpcRecipe(ConanFile):
options = {
"build": [True, False],
"doc": [True, False],
"install_path": "ANY"
}

default_options = {
"build": True,
"doc": False,
"install_path": "."
}

def configure(self):
Expand All @@ -34,7 +32,6 @@ def generate(self):
toolchain.variables["CFG_ENABLE_TEST_SUITE"] = "ON"
toolchain.variables["CMAKE_VERBOSE_MAKEFILE"] = True
toolchain.variables["JEMALLOC_PREFIX"] = self.options["jemalloc"].prefix
toolchain.variables["CMAKE_INSTALL_PREFIX"] = self.options.install_path
toolchain.generate()

def build(self):
Expand Down

0 comments on commit 64511d2

Please sign in to comment.