blob: bd33b016c4143ef028c45585a21ccffa00b584b9 (
plain)
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
|
(env
(dev
(flags (:standard -warn-error -A))
)
(release
(ocamlopt_flags (-O3)))
)
(executable
(name importer)
(libraries
unix
csv
lwt
lwt.unix
otoml
sqlite3
tools
helpers
importerSyntax
importConf
importAnalyser
importContainers
importDataTypes
importErrors
importExpression
importSQL
importFileHandler
)
(link_flags (:standard))
)
(install
(files importer.exe)
(section bin)
(package importer))
(dirs :standard \ examples)
|