repo.or.cz
/
sqlgg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Support empty sets in (x IN @foo) exprs (#109)
[sqlgg.git]
/
src
/
dune
blob
a68436a71ad3353cb7b64596f209878e7a89872d
1
(executable
2
(name gen_version)
3
(libraries mybuild)
4
(modules gen_version)
5
(preprocess (pps ppx_deriving.std)))
6
7
(rule
8
(target version.ml)
9
(deps (universe))
10
(action (run ./gen_version.exe %{target})))
11
12
(executable
13
(public_name sqlgg)
14
(modules :standard \ gen_version)
15
(name cli)
16
(promote (until-clean))
17
(libraries
18
extlib
19
oUnit
20
sqlgg
21
)
22
(preprocess (pps ppx_deriving.std))
23
)
24
25
(rule
26
(alias runtest)
27
(deps ./cli.exe)
28
(action
29
(run ./cli.exe -test)))