diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 09:11:25 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 18:59:32 +0100 |
commit | 8b8b730d3ba98d6c9e4e6274844641043b5fefbb (patch) | |
tree | 4cb60dafa05b479d0ca287d501a51db88cecaaa4 /lib/syntax/dune | |
parent | 7bfbb67d83011f3e1845dcb9e44c3b6a5e93a9da (diff) |
Moved the syntax module in its own library
Diffstat (limited to 'lib/syntax/dune')
-rwxr-xr-x | lib/syntax/dune | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/syntax/dune b/lib/syntax/dune new file mode 100755 index 0000000..1459d0c --- /dev/null +++ b/lib/syntax/dune @@ -0,0 +1,12 @@ +(library
+ (name importerSyntax)
+ (libraries
+ otoml
+ importDataTypes
+ importExpression
+ )
+ (preprocess (pps
+ ppx_deriving.show
+ ppx_deriving.eq
+ ))
+)
|