ocaml / graphics

The Graphics library from OCaml, in a standalone repository
Other
58 stars 30 forks source link

fix typo #19

Closed fdopen closed 4 years ago

fdopen commented 4 years ago

the dependency on "conf-libX11" and "conf-pkg-config" are also wrong for windows. But I didn't know, if and how the usual condition operator ({ os != "win32" }) is supported inside dune-project, so I've ignored it...

ghost commented 4 years ago

Thanks, I'm having a look for the windows dependency adjustments.

ghost commented 4 years ago

For {os != "win32"}, normally we should be able to write (conf-libx11 (<> :os win32)). However, right now we can't because of a bug in dune (cf https://github.com/ocaml/dune/pull/2963)