Skip to content

Commit a270e6f

Browse files
committed
Install interfaces as well
1 parent aa13333 commit a270e6f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pkg/META

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package "unix" (
1919

2020
package "lwt" (
2121
version = "0.2"
22-
description = "SMTP client library for Unix"
23-
requires = "smtp lwt lwt.unix"
22+
description = "SMTP client library for Lwt"
23+
requires = "smtp lwt.unix"
2424
archive(byte) = "smtp_lwt.cma"
2525
archive(byte, plugin) = "smtp_lwt.cma"
2626
archive(native) = "smtp_lwt.cmxa"

pkg/build.ml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ let () =
88
Pkg.describe "smtp" ~builder:`OCamlbuild [
99
Pkg.lib "pkg/META";
1010
Pkg.lib ~exts:Exts.module_library "src/smtp";
11-
Pkg.lib ~cond:lwt ~exts:Exts.library "src/smtp_lwt";
12-
Pkg.lib ~cond:unix ~exts:Exts.library "src/smtp_unix";
11+
Pkg.lib ~cond:lwt ~exts:Exts.module_library "src/smtp_lwt";
12+
Pkg.lib ~cond:unix ~exts:Exts.module_library "src/smtp_unix";
1313
Pkg.bin ~cond:lwt ~auto:true ~dst:"smtp_test_lwt" "test/test_lwt";
1414
Pkg.bin ~cond:unix ~auto:true ~dst:"smtp_test_unix" "test/test_unix";
1515
]

0 commit comments

Comments
 (0)