forked from xapi-project/xen-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdune
More file actions
28 lines (25 loc) · 613 Bytes
/
dune
File metadata and controls
28 lines (25 loc) · 613 Bytes
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
(env
(gprof
(ocamlopt_flags (:standard -g -p -w -39))
(flags (:standard -w -39))
)
(dev
(flags (:standard -g -w -39))
(env-vars (LANG C)))
(release
(flags (:standard -w -39-6@5))
(env-vars (ALCOTEST_COMPACT 1)
(LANG C))
)
)
(executable
(name configure)
(libraries dune-configurator findlib cmdliner unix))
; Can still be used for dependencies, but dune won't scan these dirs
; for dune files
(data_only_dirs doc scripts python3 .vscode)
(install
(package xapi-sdk)
(section share_root)
(files (python3/examples/XenAPI/XenAPI.py as python/XenAPI.py))
)