Skip to content

Commit

Permalink
Fix Z3 dependencies
Browse files Browse the repository at this point in the history
I am getting Z3 dependency issues when publishing to Opam.
These only seem to happen in the bytecode builds so I
am restricting builds to executable only.
  • Loading branch information
alastairreid committed May 17, 2020
1 parent 1bdc2d2 commit 33e6bae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/dune
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
(executable
(name asli)
(public_name asli)
(modes exe)
(modules asli)
(libraries libASL linenoise pprint))

(executable
(name testlexer)
(modes exe)
; (public_name test_asl_lexer)
(modules testlexer)
(libraries libASL))
1 change: 1 addition & 0 deletions tests/dune
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
(test (name test_asl)
(modes exe)
(libraries alcotest libASL))

0 comments on commit 33e6bae

Please sign in to comment.