We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73b9d96 commit 5cf177cCopy full SHA for 5cf177c
conanfile.py
@@ -149,11 +149,9 @@ def package(self):
149
]
150
)
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")
+ pdb_dest = pathlib.Path(package_dir, "RelWithDebInfo/lib")
157
# pdb_dest.mkdir()
158
pdb_files = pathlib.Path(self.build_folder).glob("hdps/RelWithDebInfo/*.pdb")
159
for pfile in pdb_files:
0 commit comments