-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from TypesLogicsCats/dune-migration
Migrate from Jbuilder to Dune
- Loading branch information
Showing
11 changed files
with
56 additions
and
68 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,18 +1,18 @@ | ||
all: | ||
@jbuilder build @install @DEFAULT | ||
dune build @install @DEFAULT | ||
|
||
test: | ||
@jbuilder runtest | ||
dune runtest | ||
|
||
install: | ||
@jbuilder install | ||
dune install | ||
|
||
uninstall: | ||
@jbuilder uninstall | ||
dune uninstall | ||
|
||
check: test | ||
|
||
.PHONY: clean all check test install uninstall | ||
|
||
clean: | ||
jbuilder clean | ||
dune clean |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
(lang dune 1.0) | ||
(name easy-format) |
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
;; we don't include jsonpp here b/c it requires json-wheel | ||
|
||
(executables | ||
(names simple_example lambda_example) | ||
(modules :standard \ jsonpp) | ||
(libraries easy-format)) | ||
|
||
(alias | ||
(name DEFAULT) | ||
(deps simple_example.exe lambda_example.exe)) |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
(library | ||
(name easy_format) | ||
(public_name easy-format) | ||
(synopsis "Indentation made easy(ier)")) |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
(executable | ||
(name test_easy_format) | ||
(libraries easy-format)) | ||
|
||
(alias | ||
(name runtest) | ||
(deps | ||
(:< test_easy_format.exe)) | ||
(action | ||
(run %{<}))) |
This file was deleted.
Oops, something went wrong.