unison

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

dune (900B)


      1 (library
      2  (name unison_lib)
      3  (wrapped false)
      4  (modules :standard \ linktext linkgtk3 uigtk3 pixmaps uimacbridge test make_tools)
      5  (modules_without_implementation ui)
      6  (flags :standard
      7         -w -3-6-9-10-26-27-32-34-35-38-39-50-52
      8         -warn-error -3-6-9-10-26-27-32-34-35-39-50-52
      9         -no-strict-sequence)
     10  (foreign_stubs
     11   (language c)
     12   (names bytearray_stubs osxsupport pty hash_compat props_xattr props_acl copy_stubs))
     13  (c_library_flags -lutil)
     14  (libraries str unix lwt_lib bigarray))
     15 
     16 (include_subdirs unqualified)
     17 
     18 (executable
     19  (name linktext)
     20  (public_name unison)
     21  (package unison) ; Dummy: we don't use packages
     22  (modules linktext)
     23  (libraries unison_lib))
     24 
     25 (executable
     26  (name linkgtk3)
     27  (public_name unison-gui)
     28  (package unison-gui) ; Dummy: we don't use packages
     29  (flags :standard -w -3-6-9-27-32-52)
     30  (modules linkgtk3 uigtk3 pixmaps)
     31  (libraries threads unison_lib lablgtk3))