-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from rgrinberg/fix-modules
Fix list of modules in dune file
- Loading branch information
Showing
7 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include Polling |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include module type of struct include Polling end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)))) |