forked from ARM-software/asl-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
1bdc2d2
commit 33e6bae
Showing
2 changed files
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
(test (name test_asl) | ||
(modes exe) | ||
(libraries alcotest libASL)) |