-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ppx: further dependency cleanup and drop use of ppxfind
Signed-off-by: Marcello Seri <[email protected]>
- Loading branch information
Showing
4 changed files
with
8 additions
and
24 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,17 +1,11 @@ | ||
(rule | ||
((targets (ppx_deriving_rpc.ml)) | ||
(deps (ppx_deriving_rpc.cppo.ml)) | ||
(action (run ${bin:cppo} -V OCAML:${ocaml_version} ${<} -o ${@})))) | ||
|
||
|
||
(library | ||
((name ppx_deriving_rpc) | ||
(public_name ppx_deriving_rpc) | ||
(synopsis "[@@deriving rpc]") | ||
(kind ppx_deriver) | ||
(libraries ( | ||
ppx_deriving.api | ||
(libraries (ppx_deriving.api | ||
rpclib.core)) | ||
(preprocess (action (run ppxfind -legacy ppx_deriving.runtime,ppx_tools.metaquot --as-pp ${<}))) | ||
(preprocess (pps (ppx_tools_versioned.metaquot_406)) | ||
) | ||
(wrapped false) | ||
)) |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
open Ast_406 | ||
|
||
open Longident | ||
open Asttypes | ||
open Parsetree | ||
|
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