-
Notifications
You must be signed in to change notification settings - Fork 12
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 #39 from hammerlab/conv-changes
Cmdliner.Arg.conv
- Loading branch information
Showing
9 changed files
with
217 additions
and
254 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
(lang dune 1.0) | ||
(name ppx_deriving_cmdliner) |
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,26 @@ | ||
(rule | ||
(deps | ||
(:< ppx_deriving_cmdliner.cppo.ml)) | ||
(targets ppx_deriving_cmdliner.ml) | ||
(action | ||
(run %{bin:cppo} -V OCAML:%{ocaml_version} %{<} -o %{targets}))) | ||
|
||
(library | ||
(name ppx_deriving_cmdliner_runtime) | ||
(public_name ppx_deriving_cmdliner.runtime) | ||
(synopsis "Runtime components of [@@deriving cmdliner]") | ||
(modules ppx_deriving_cmdliner_runtime) | ||
(libraries ppx_deriving.runtime result)) | ||
|
||
(library | ||
(name ppx_deriving_cmdliner) | ||
(public_name ppx_deriving_cmdliner) | ||
(synopsis "[@@deriving cmdliner]") | ||
(libraries ppx_deriving.api) | ||
(preprocess | ||
(action | ||
(run ppxfind -legacy ppx_tools.metaquot --as-pp %{input-file}))) | ||
(ppx_runtime_libraries ppx_deriving_cmdliner_runtime cmdliner) | ||
(flags :standard -w -9-27-39) | ||
(modules ppx_deriving_cmdliner) | ||
(kind ppx_deriver)) |
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,13 @@ | ||
(executable | ||
(name test_ppx_deriving_cmdliner) | ||
(libraries alcotest result) | ||
(flags :standard -w -27-39) | ||
(preprocess | ||
(pps ppx_deriving.show ppx_deriving_cmdliner))) | ||
|
||
(alias | ||
(name runtest) | ||
(deps | ||
(:< test_ppx_deriving_cmdliner.exe)) | ||
(action | ||
(run %{<}))) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.