-
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.
Use better naming convention for select
Now we no longer need to include a `modules` field Signed-off-by: Rudi Grinberg <me@rgrinberg.com>
- Loading branch information
Showing
7 changed files
with
6 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.
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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
(library | ||
(name irmin_watcher) | ||
(modules core hook backend 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)))) |