-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[install] Install incorrect pdb name, missing suffix ${CMAKE_DEBUG_POSTFIX} #29
Comments
Can you submit a PR? |
@letmaik ,I will submit pr later and link to this issue |
INSTALL(FILES ${PROJECT_BINARY_DIR}/raw${CMAKE_DEBUG_POSTFIX}.pdb Is debug folder missing in path? INSTALL(FILES ${PROJECT_BINARY_DIR}/Debug/raw${CMAKE_DEBUG_POSTFIX}.pdb |
Yes, I can confirm that debug folder is missing in path too |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi guys,
Today, I'm updating libraw in vcpkg, but some errors occurred during the installation process:
After checking the generated files, I found that the pdb file "raw.pdb" does not exist in the debug folder. Instead, I found the file
rawd.pdb
.So I checked the
CMakeLists.txt
:LibRaw-cmake/CMakeLists.txt
Lines 108 to 110 in 5d54a89
When we set
CMAKE_DEBUG_POSTFIX
here, the target output name will always add the suffixd
. The resulting pdb file israwd
/raw_rd
instead ofraw
/raw_r
.So here:
LibRaw-cmake/CMakeLists.txt
Lines 623 to 632 in 5d54a89
Should be:
Thanks,
Jon
The text was updated successfully, but these errors were encountered: