aboutsummaryrefslogtreecommitdiff
path: root/bin/dune
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2021-02-02 14:01:39 +0100
committerSébastien Dailly <sebastien@chimrod.com>2021-02-02 21:26:33 +0100
commitb09a05d9e38e0734f66377716b00268b50da7de8 (patch)
tree75c5161f755e15349998af4adfe39bce46406c58 /bin/dune
Initial commit
Diffstat (limited to 'bin/dune')
-rwxr-xr-xbin/dune18
1 files changed, 18 insertions, 0 deletions
diff --git a/bin/dune b/bin/dune
new file mode 100755
index 0000000..611ab5d
--- /dev/null
+++ b/bin/dune
@@ -0,0 +1,18 @@
+(env
+ (dev
+ (flags (:standard -warn-error -A))
+ )
+ (release
+ (ocamlopt_flags (-O3)))
+)
+
+(executable
+ (public_name css_merge)
+ (package css_merge)
+ (libraries
+ stdio
+ css_lib
+ )
+ (preprocess (pps lwt_ppx ppx_deriving_argparse))
+)
+