File: dune

package info (click to toggle)
tyxml 4.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 944 kB
  • sloc: ml: 9,712; makefile: 91; javascript: 3
file content (31 lines) | stat: -rw-r--r-- 792 bytes parent folder | download | duplicates (2)
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
(rule
 (targets html_sigs_reflected.ml)
 (deps    reflect/reflect.exe ../lib/html_sigs.mli)
 (action  (run %{deps} %{targets})))
(rule
 (targets svg_sigs_reflected.ml)
 (deps    reflect/reflect.exe ../lib/svg_sigs.mli)
 (action  (run %{deps} %{targets})))
(rule
 (targets html_types_reflected.ml)
 (deps    reflect/reflect.exe ../lib/html_types.mli)
 (action  (run %{deps} %{targets})))
(rule
 (targets svg_types_reflected.ml)
 (deps    reflect/reflect.exe ../lib/svg_types.mli)
 (action  (run %{deps} %{targets})))

(library
 (name tyxml_syntax)
 (public_name tyxml-syntax)
 (libraries uutf re.str
            ppxlib
 )
 (preprocess (pps ppxlib.metaquot))
 (modules_without_implementation sigs_reflected)
 (flags (:standard
         -safe-string
         -open Ppxlib
         -w "-9"
 ))
)