forked from ocaml/dune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libs.ml
28 lines (26 loc) · 1.24 KB
/
libs.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
let executables = [ "main" ]
let external_libraries = [ "unix"; "threads.posix" ]
let local_libraries =
[ ("vendor/csexp/src", Some "Dune_csexp", false, None)
; ("src/stdune", Some "Stdune", false, None)
; ("src/dune_lang", Some "Dune_lang", false, None)
; ("vendor/incremental-cycles/src", Some "Incremental_cycles", false, None)
; ("src/dag", Some "Dag", false, None)
; ("src/fiber", Some "Fiber", false, None)
; ("src/memo", Some "Memo", false, None)
; ("src/dune_util", Some "Dune_util", false, None)
; ("src/xdg", Some "Xdg", false, None)
; ("src/cache", Some "Cache", false, None)
; ("src/cache_daemon", Some "Cache_daemon", false, None)
; ("vendor/re/src", Some "Dune_re", false, None)
; ("vendor/opam-file-format/src", None, false, None)
; ("otherlibs/dune-glob/src", Some "Dune_glob", false, None)
; ("src/ocaml-config", Some "Ocaml_config", false, None)
; ("src/catapult", Some "Catapult", false, None)
; ("src/jbuild_support", Some "Jbuild_support", false, None)
; ("otherlibs/action-plugin/src", Some "Dune_action_plugin", false, None)
; ("src/dune", Some "Dune", true, None)
; ("vendor/cmdliner/src", None, false, None)
; ("otherlibs/build-info/src", Some "Build_info", false,
Some "build_info_data")
]