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 5cf177c commit daeaacaCopy full SHA for daeaaca
conanfile.py
@@ -152,8 +152,8 @@ def package(self):
152
# Add the pdb files next to the libs for RelWithDebInfo linking
153
if tools.os_info.is_windows:
154
pdb_dest = pathlib.Path(package_dir, "RelWithDebInfo/lib")
155
- # pdb_dest.mkdir()
156
- pdb_files = pathlib.Path(self.build_folder).glob("hdps/RelWithDebInfo/*.pdb")
+ pdb_dest.mkdir()
+ pdb_files = pathlib.Path(self.build_folder).glob("*.pdb")
157
for pfile in pdb_files:
158
shutil.copy(pfile, pdb_dest)
159
0 commit comments