-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
format + check for formatting in CI
- Loading branch information
Showing
22 changed files
with
147 additions
and
154 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
(executable | ||
(name run) | ||
(ocamlopt_flags :standard -inline 100) | ||
|
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,4 +1,3 @@ | ||
|
||
include Pb_codegen_plugin.S | ||
|
||
val plugin : Pb_codegen_plugin.t |
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
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,3 @@ | ||
|
||
(env | ||
(_ (flags :standard -warn-error -a+8 -w +a-4-40-41-42-44-48-70))) | ||
(_ | ||
(flags :standard -warn-error -a+8 -w +a-4-40-41-42-44-48-70))) |
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,4 +1,3 @@ | ||
|
||
(library | ||
(name pbrt_services) | ||
(public_name pbrt_services) | ||
|
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,5 +1,6 @@ | ||
|
||
(library | ||
(public_name pbrt_yojson) | ||
(wrapped false) | ||
(libraries (re_export yojson) base64)) | ||
(public_name pbrt_yojson) | ||
(wrapped false) | ||
(libraries | ||
(re_export yojson) | ||
base64)) |
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,16 +1,20 @@ | ||
(test | ||
(name google_unittest) | ||
(flags :standard -w -11) | ||
(package ocaml-protoc) | ||
(libraries pbrt)) | ||
(name google_unittest) | ||
(flags :standard -w -11) | ||
(package ocaml-protoc) | ||
(libraries pbrt)) | ||
|
||
(rule | ||
(targets unittest.ml unittest.mli) | ||
(deps (:file unittest.proto) unittest_import.proto) | ||
(action (run ocaml-protoc --ml_out . -I . %{file}))) | ||
(targets unittest.ml unittest.mli) | ||
(deps | ||
(:file unittest.proto) | ||
unittest_import.proto) | ||
(action | ||
(run ocaml-protoc --ml_out . -I . %{file}))) | ||
|
||
(rule | ||
(targets unittest_import.ml unittest_import.mli) | ||
(deps (:file unittest_import.proto)) | ||
(action (run ocaml-protoc --ml_out . -I . %{file}))) | ||
|
||
(targets unittest_import.ml unittest_import.mli) | ||
(deps | ||
(:file unittest_import.proto)) | ||
(action | ||
(run ocaml-protoc --ml_out . -I . %{file}))) |
Oops, something went wrong.