unison

Fork of Unison, a bi-directional file synchronization tool
git clone git://git.laack.co/unison.git
Log | Files | Refs | README | LICENSE

dune (496B)


      1 (copy_files# ../watchercommon.ml{,i})
      2 
      3 (library
      4  (name fswatcher_solaris)
      5  (wrapped false)
      6  (enabled_if (= %{system} "solaris"))
      7  (modules :standard \ watcher)
      8  (flags :standard -w -3-27-39)
      9  (foreign_stubs
     10   (language c)
     11   (names fen_stubs))
     12  (libraries unix lwt_lib))
     13 
     14 (executable
     15  (name watcher)
     16  (public_name unison-fsmonitor)
     17  (package unison) ; Dummy: we don't use packages
     18  (enabled_if (= %{system} "solaris"))
     19  (modules watcher)
     20  (flags :standard -w -27)
     21  (libraries fswatcher_solaris))
     22