How to get stage.install rule to pick up new MSVC-specific type? #443
-
A while ago I customized msvc.jam to handle .NET assemblies and building with In msvc.jam, I have this:
The generate-binding-redirects part is clunky by using SHELL with a CLI tool I wrote, but it works for me for now because the list of assemblies is fixed in the Jamfiles (if it was a dynamic list, SHELL wouldn't work). So this is correctly generating the Elsewhere in msvc.jam, I've registered a config type:
And in my stage.install rule I've added |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Can you use this: https://www.bfgroup.xyz/b2/manual/release/index.html#_installing_with_all_dependencies? |
Beta Was this translation helpful? Give feedback.
-
BTW, for b2 questions you may also use https://cppalliance.org/slack/, that may result in a more immediate discussion, as it is a chat rather than a forum. |
Beta Was this translation helpful? Give feedback.
There's probably no better place, unfortunately.
Have you looked into how PDB files are produced? MSVC linking generator adds them to
generate
rule's result when conditions are met. This makes overall b2 machinery aware of their existence.