We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9fa4d1 commit 73b9d96Copy full SHA for 73b9d96
1 file changed
conanfile.py
@@ -99,7 +99,6 @@ def generate(self):
99
# Use the ManiVault .cmake file to find ManiVault with find_package
100
mv_core_root = self.deps_cpp_info["hdps-core"].rootpath
101
manivault_dir = pathlib.Path(mv_core_root, "cmake", "mv").as_posix()
102
- self.install_dir = pathlib.Path(os.environ["MV_INSTALL_DIR"]).as_posix()
103
104
print("ManiVault_DIR: ", manivault_dir)
105
tc.variables["ManiVault_DIR"] = manivault_dir
@@ -150,6 +149,8 @@ def package(self):
150
149
]
151
)
152
+ self.install_dir = pathlib.Path(os.environ["MV_INSTALL_DIR"]).as_posix()
153
+
154
# Add the pdb files next to the libs for RelWithDebInfo linking
155
if tools.os_info.is_windows:
156
pdb_dest = pathlib.Path(self.install_dir, "RelWithDebInfo/lib")
0 commit comments