Results 508 comments of hhugo

Maybe ```diff let stdout_columns () = if Sys.win32 then None else match Terminal.get_dimensions () with - | Some { columns; _ } -> Some columns + | Some { columns;...

@balat, another exemple of the issue. we need documentation on this.

1 - One way to fix this is to have a client lib, and link with it. 2 - Another way is to pack all the client files and generate...

1- `monproj.client` refers to the findlib package defined by ``` FindlibName: client FindlibParent: monproj ``` 2 - ocamlbuild_eliom plugin tell ocamlbuild that if there is no file matching `*/client/blah.ml`, it...

@tobiasBora: example using pack https://github.com/hhugo/eliom_template_oasis_03/commit/1b444b325b2d82f1bb3ae17011c4816a873d90db

I think ocamlbuild doesn't like to deal with `..` path. If you want many libs (in different directory), DECLARE may libs !! ``` library "A_client" Path: path_A/client Modules: MA1,MA2 library...

@tobiasBora, Is this resolved ?