-
-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move all prebuild functionality into dune, take 2 (#11983)
* Reapply "Move all prebuild functionality into dune. (#11966)" This reverts commit c85f269. * Delete dune-workspace.dev and pass --profile release in the Makefile.
- Loading branch information
1 parent
c85f269
commit f30a63f
Showing
12 changed files
with
49 additions
and
52 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
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
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,2 +1,2 @@ | ||
(dirs :standard \ tests std extra) | ||
(data_only_dirs lib) | ||
(dirs src libs) | ||
(data_only_dirs src-json) |
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 |
---|---|---|
|
@@ -4,7 +4,3 @@ | |
(package | ||
(name haxe) | ||
) | ||
|
||
(package | ||
(name haxe_prebuild) | ||
) |
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 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,5 @@ | ||
(rule | ||
(deps (env_var ADD_REVISION)) | ||
(targets version.ml) | ||
(action (with-stdout-to version.ml (run ../prebuild.exe version))) | ||
) |
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,17 @@ | ||
(rule | ||
(targets metaList.ml) | ||
(deps ../../src-json/meta.json) | ||
(action (with-stdout-to metaList.ml (run %{bin:haxe_prebuild} meta ../../src-json/meta.json))) | ||
(action (with-stdout-to metaList.ml (run ../prebuild.exe meta ../../src-json/meta.json))) | ||
) | ||
|
||
(rule | ||
(targets defineList.ml) | ||
(deps ../../src-json/define.json) | ||
(action (with-stdout-to defineList.ml (run %{bin:haxe_prebuild} define ../../src-json/define.json))) | ||
(action (with-stdout-to defineList.ml (run ../prebuild.exe define ../../src-json/define.json))) | ||
) | ||
|
||
(rule | ||
(targets warningList.ml) | ||
(deps ../../src-json/warning.json) | ||
(action (with-stdout-to warningList.ml (run %{bin:haxe_prebuild} warning ../../src-json/warning.json))) | ||
(action (with-stdout-to warningList.ml (run ../prebuild.exe warning ../../src-json/warning.json))) | ||
) |
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