File: dune

package info (click to toggle)
ocaml-csv 2.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 396 kB
  • sloc: ml: 2,117; makefile: 72
file content (17 lines) | stat: -rw-r--r-- 495 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(library
 (name        csv_lwt)
 (public_name csv-lwt)
 (modules     Csv_lwt Csv_utils)
 (flags       :standard -safe-string)
 (libraries   bytes lwt lwt.unix csv)
 (synopsis "A pure OCaml library to read and write CSV files (LWT version)."))

(rule
 (targets csv_lwt.ml)
 (deps    ../src/csv.pp.ml ../src/csv_memory.ml ../config/pp.exe)
 (action (chdir %{workspace_root} (run config/pp.exe))))

(rule
 (targets csv_utils.ml)
 (deps    ../src/csv_utils.ml)
 (action  (copy %{deps} %{targets})))