forked from ocaml-ppx/ppx_import
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build] Migrate to
dune
/ ocaml-migrate-parsetree
Fixes ocaml-ppx#26. Changes: - Build system migrated to Dune. - Remove use of `cppo` in favor of ocaml-migrate-parsetree - Remove use of `topkg` in favor of `dune-release` - Updated `.gitignore` This is still work in progress, in particular, it only works with OCaml 4.06 due to the need to have `typedtree` versioning. This will need to be resolved before this PR can be merged. Another question is whether we should use `ppx_tools_versioned` or `ppxlib` directly.
- Loading branch information
Showing
18 changed files
with
92 additions
and
613 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,6 +1,4 @@ | ||
*.native | ||
*.byte | ||
*.docdir | ||
*~ | ||
_build | ||
*.install | ||
pkg/META | ||
.merlin |
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
File renamed without changes.
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,2 @@ | ||
(lang dune 1.1) | ||
|
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,5 @@ | ||
(lang dune 1.1) | ||
|
||
(env | ||
(dev (flags :standard)) | ||
(release (flags :standard))) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.