I'm trying to create a package (from local binaries) that can be installed using vcpkg. In vcpkg the file hierarchy for installed packages is:
package
|- bin
|- include
|- lib
|- debug
|- bin
|- lib
In case that the package doesn't have any debug binaries, do I have to copy the release binaries to the debug folder in order to use them or does vcpkg fall automatically back to the release binaries?