Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix list of modules in dune file #25

Merged
merged 3 commits into from
Nov 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions src/backend.polling.ml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include Polling
1 change: 1 addition & 0 deletions src/backend.polling.mli
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include module type of struct include Polling end
rgrinberg marked this conversation as resolved.
Show resolved Hide resolved
13 changes: 6 additions & 7 deletions src/dune
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
(library
(name irmin_watcher)
(modules core hook backend polling irmin_watcher)
(public_name irmin-watcher)
(c_names realpath)
(libraries fmt lwt logs astring
(select backend.ml from
(osx-cf.lwt osx-fsevents.lwt -> fsevents.ml)
(inotify.lwt -> inotify.ml)
(lwt.unix -> polling.ml))
(osx-cf.lwt osx-fsevents.lwt -> backend.fsevents.ml)
(inotify.lwt -> backend.inotify.ml)
(lwt.unix -> backend.polling.ml))
(select backend.mli from
(osx-cf.lwt osx-fsevents.lwt -> fsevents.mli)
(inotify.lwt -> inotify.mli)
(lwt.unix -> polling.mli))))
(osx-cf.lwt osx-fsevents.lwt -> backend.fsevents.mli)
(inotify.lwt -> backend.inotify.mli)
(lwt.unix -> backend.polling.mli))))