-
Notifications
You must be signed in to change notification settings - Fork 404
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
Automatically install executable with extension .exe
on Windows
#123
Conversation
This is great, thanks - I haven't got anything quickly with which to test the |
This is good to go for me - happy to merge? |
yep |
There seems to be something wrong with this commit. The latest js_of_ocaml doesn't compile since this commit: |
js_of_ocaml install these explicitly |
@hhugo, do you install both the version with the |
I guess it does not, see dbuenzli/vg#16 |
When the user installs an executable, if the source file ends with
.bc
or.exe
, jbuilder makes sure that the destination ends with.exe
. This way executables that are installed in any section are correctly installed with the.exe
suffix.Additionally, Jbuilder now resolves
${libexec:<foo>:<file>}
to<foo dir>/<file>.exe
if it exists, and<foo dir>/<file>
otherwise.@dra27, can you test this branch?