-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathdune
41 lines (38 loc) · 887 Bytes
/
dune
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
29
30
31
32
33
34
35
36
37
38
39
40
41
(vendored_dirs vendor)
(data_only_dirs submodules)
(rule
(copy lsp.opam.template jsonrpc.opam.template))
(subdir
vendor
(subdir
fiber
(copy_files# %{workspace_root}/submodules/dune/src/fiber/*.{ml,mli})
(library
(libraries stdune)
(name fiber)))
(subdir
stdune-unstable
(subdir
dune_filesystem_stubs
(copy_files#
%{workspace_root}/submodules/dune/otherlibs/stdune-unstable/dune_filesystem_stubs/*.*)
(library
(name dune_filesystem_stubs)
(public_name lsp.filesystem_stubs)
(libraries)
(foreign_stubs
(language c)
(names readdir))))
(copy_files#
%{workspace_root}/submodules/dune/otherlibs/stdune-unstable/*.*)
(library
(name stdune)
(libraries
unix
csexp
(re_export pp)
dune_filesystem_stubs)
(foreign_stubs
(language c)
(names fcntl_stubs wait3_stubs))
(public_name lsp.stdune))))