From 6b377719c10d5ab3343fd5221f99a4a21008e25a Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Thu, 14 Mar 2024 08:26:58 +0100 Subject: Initial commit --- bin/dune | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 bin/dune (limited to 'bin/dune') diff --git a/bin/dune b/bin/dune new file mode 100755 index 0000000..fad168d --- /dev/null +++ b/bin/dune @@ -0,0 +1,38 @@ +(env + (dev + (flags (:standard -warn-error -A)) + ) + (release + (ocamlopt_flags (-O3))) +) + +(executable + (name importer) + (libraries + csv + lwt + lwt.unix + otoml + yojson + tools + helpers + importConf + importAnalyser + importContainers + importDataTypes + importCSV + importErrors + importExpression + importFileHandler + importSQL + ) + (link_flags (:standard)) +(preprocess (pps ppx_yojson_conv)) +) + +(install + (files importer.exe) + (section bin) + (package importer)) + +(dirs :standard \ examples) -- cgit v1.2.3