Skip to content

Commit

Permalink
do not build all examples
Browse files Browse the repository at this point in the history
one example uses lwt_ppx which we don't want to depend on, see #66
examples that are part of the tests are built alright during make test
  • Loading branch information
ygrek committed Jul 15, 2024
1 parent f763bc2 commit 3268b0b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: all
all:
dune build @all
dune build @install

.PHONY: test
test:
Expand Down
2 changes: 1 addition & 1 deletion curl.opam
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ depends: [
"conf-libcurl"
]
synopsis: "Bindings to libcurl"
description: "libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library wrap easy synchronous API (Curl), synchronous parallel and generic asynchronous API (Curl.Multi), and provides an Lwt-enabled asynchronous interface (Curl_lwt)."
description: "libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library wrap easy synchronous API (Curl) and synchronous parallel and generic asynchronous API (Curl.Multi). For the Lwt-enabled asynchronous interface (Curl_lwt) see curl_lwt package."
5 changes: 2 additions & 3 deletions curl_lwt.opam
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ depends: [
"base-unix"
"curl" {= version}
"lwt"
"lwt_ppx"
]
synopsis: "Bindings to Lwt"
description: "libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library wrap easy synchronous API (Curl), synchronous parallel and generic asynchronous API (Curl.Multi), and provides an Lwt-enabled asynchronous interface (Curl_lwt)."
synopsis: "Bindings to libcurl (lwt variant)"
description: "libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library provides an Lwt-enabled asynchronous interface (Curl_lwt)."

0 comments on commit 3268b0b

Please sign in to comment.