I am currently working on a project where I am using Oasis to handling building of the OCaml files. It works great. However I am confused at what findlibParent
is actually doing in a library definition.
The documentation specifies
FindlibParent: Library which includes the current library. The current library will be built as its parents and installed along it.
I dont understand what implication built as its parents
has on the way I refer to something. Does this mean if I have module library that has findlibParent: X
in the definition, and the module's name is Y
, then I would have to refer to it like open X.Y
?
I apologize if this is obvious - the wording is very confusing to me.
Thank you!