Skip to content

Commit

Permalink
Use better naming convention for select
Browse files Browse the repository at this point in the history
Now we no longer need to include a `modules` field

Signed-off-by: Rudi Grinberg <me@rgrinberg.com>
  • Loading branch information
rgrinberg committed Nov 6, 2019
1 parent 745bc9d commit 0bfdada
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 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 0bfdada

Please sign in to comment.