Skip to content

Commit 9c1cc1a

Browse files
authored
Fix pdb destination path for Windows builds
1 parent d431030 commit 9c1cc1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def package(self):
153153

154154
# Add the pdb files next to the libs for RelWithDebInfo linking
155155
if tools.os_info.is_windows:
156-
pdb_dest = pathlib.Path(package_dir, "RelWithDebInfo/pdb")
156+
pdb_dest = pathlib.Path(package_dir, "RelWithDebInfo", "pdb")
157157
pdb_dest.mkdir()
158158
pdb_files = pathlib.Path(self.build_folder).glob("*.pdb")
159159
for pfile in pdb_files:

0 commit comments

Comments
 (0)