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 8, 2023
1 parent f2b7c58 commit a9246e1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ class FlowRecipe(ConanFile):
settings = "os", "compiler", "build_type", "arch"

generators = (
"CMakeToolchain"
"CMakeToolchain",
Virtualenv
)

tool_requires = (
Expand Down Expand Up @@ -69,3 +70,6 @@ def generate(self):
if self.options.doc:
cmake.build_context_activated = ["doxygen/1.9.4"]
cmake.generate()

def package_info(self):
self.env_info.path.append(os.path.join(self.package_folder, "bin"))

0 comments on commit a9246e1

Please sign in to comment.