Output path of OCaml executable in OASIS

79 Views Asked by At

I'm trying to specify executables in my _oasis configuration. This works fine so far, and a link to the compiled binary is created in the root directory of my _oasis configuration. However, I would rather have the binary (link) be created in the subdirectory ./bin - is there any way to achieve this?

1

There are 1 best solutions below

0
On BEST ANSWER

I would do something like this :

PostBuildCommand: mv -L main.native bin/main.native

You can find it here.