Oliver Friedmann
Oliver Friedmann

Reputation: 164

Output path of OCaml executable in OASIS

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?

Upvotes: 0

Views: 72

Answers (1)

Lhooq
Lhooq

Reputation: 4441

I would do something like this :

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

You can find it here.

Upvotes: 0

Related Questions