Hey guys,
I have a 3rd party binary that needs to be used with my library.
My directory looks like so:
myLibrary.nimble
When installing the package via Nimble, I'd like to have this binary reside within the .nimble/bin (or somewhere in the PATH really) so it can be referred to by the binary that gets created during the Nimble installation. This 3rd party binary is a helper that will embed an icon within a Window's executable
I think is what you are looking for
Also note that nimble supports install hooks/task or whatever they are called, as I used for the gintro install:
https://github.com/StefanSalewski/gintro/blob/master/gintro.nimble
I am using the "before install:" task.
Unfortunately I am not sure if the nimph package manager supports that as well.