Hello,
I am trying to ship a pdb file with my distribution but it seems the resources defined in the config file are expected to be available prior to building.
Seems to error out on `cargo:rerun-if-changed={path to pdb file that does not exist yet in target/release directory}
Since the bundling of files is done after the build I was hoping to use a resource path that would exist, even if doesn't yet exist.
Seems like as a workaround I could
- Use a custom nsis script, seems like overkill
- use a before build command create a dummy pdb file in that location, it would get re-written by the proper pdb file.
Any other ideas, or am I missing something? I have cargo setup to put the pdb file in the release directory alongside the exe.
Thanks!