Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove lwt from directory names #281

Merged
merged 2 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ clean:

test:
rm -rf _build/_tests
dune build test/test.exe test-lwt/test_lwt.exe test-bin/calc.exe test-bin/echo/echo_bench.exe @install
dune build test test-bin @install
#./_build/default/test/test.bc test core -ev 36
#./_build/default/test-lwt/test.bc test lwt -ev 3
dune build @runtest --no-buffer -j 1
16 changes: 0 additions & 16 deletions capnp-rpc-lwt/dune

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 15 additions & 3 deletions capnp-rpc/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
(library
(name capnp_rpc_proto)
(public_name capnp-rpc.proto)
(libraries astring fmt logs stdint asetmap))
(name capnp_rpc)
(public_name capnp-rpc)
(ocamlc_flags :standard -w -55-53)
(ocamlopt_flags :standard -w -55-53)
(libraries astring capnp capnp-rpc.proto fmt logs lwt uri))

(rule
(targets rpc_schema.ml rpc_schema.mli)
(deps rpc_schema.capnp)
(action (run capnp compile -o %{bin:capnpc-ocaml} %{deps})))

(rule
(targets persistent.ml persistent.mli)
(deps persistent.capnp)
(action (run capnp compile -o %{bin:capnpc-ocaml} %{deps})))
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions capnp-rpc/proto/dune
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(library
(name capnp_rpc_proto)
(public_name capnp-rpc.proto)
(libraries astring fmt logs stdint asetmap))
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 0 additions & 5 deletions test-lwt/dune

This file was deleted.

7 changes: 4 additions & 3 deletions test/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
(test
(name test)
(package capnp-rpc)
(libraries capnp-rpc.proto alcotest logs.fmt testbed))
(package capnp-rpc-unix)
(name test_lwt)
(libraries capnp-rpc capnp-rpc-unix alcotest-lwt testlib logs.fmt
testbed))
4 changes: 4 additions & 0 deletions test/proto/dune
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(test
(name test)
(package capnp-rpc)
(libraries capnp-rpc.proto alcotest logs.fmt testbed))
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading