Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix package installation with dune + unrelated clean #1

Merged
merged 3 commits into from
Apr 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions _tags

This file was deleted.

2 changes: 1 addition & 1 deletion anthill.opam
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build: [
]
depends: [
"ocaml" {>= "4.06"}
"dune" {build & >= "1.0"}
"dune" {>= "1.0"}
"core"
"pcre"
"mparser"
Expand Down
137 changes: 0 additions & 137 deletions bin/.merlin

This file was deleted.

1 change: 1 addition & 0 deletions bin/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
(executable
(name main)
(public_name anthill)
(libraries anthill core pcre mparser mparser.pcre lwt lambda-term)
(preprocess (pps lwt_ppx)))
1 change: 1 addition & 0 deletions lib/dune
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(library
(name anthill)
(public_name anthill)
(modules_without_implementation engine)
(libraries core pcre mparser mparser.pcre lwt lambda-term)
(preprocess (pps lwt_ppx)))