Skip to content

Commit

Permalink
Merge pull request #25 from rgrinberg/fix-modules
Browse files Browse the repository at this point in the history
Fix list of modules in dune file
  • Loading branch information
samoht authored Nov 11, 2019
2 parents 59bc805 + 76e2bdf commit ae05494
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
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
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))))

0 comments on commit ae05494

Please sign in to comment.