diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-01-18 16:45:03 -0600 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-01-18 16:45:03 -0600 |
commit | 81fb055292f49a76732c1966874b8d2ad2cb1807 (patch) | |
tree | 7e9a8e9128a0a28616c55b50f12e8bfe4da2660b /discocaml/dune | |
parent | c3efede502f0f9ba3b03195ac8f30fff0376c8ab (diff) |
Start of our own AST.
Diffstat (limited to 'discocaml/dune')
-rw-r--r-- | discocaml/dune | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/discocaml/dune b/discocaml/dune index 961fe70..50b12c2 100644 --- a/discocaml/dune +++ b/discocaml/dune @@ -2,14 +2,17 @@ (name discocaml) (inline_tests) (libraries compiler-libs.common yojson) - (modules discocaml) + (modules ast discocaml eval) (package discocaml) (preprocess (pps ppx_deriving.show ppx_deriving_yojson ppx_expect))) +(env + (release + (link_flags + (:standard -cclib -static -cclib -lm -O3)))) + (executable - (flags - (:standard -cclib -static -cclib -lm)) (libraries discocaml yojson) (modules main) (name main) |