Deps: be compatible with Js_of_ocaml.3.3.0

It now uses dune and "wraps" its library.
This commit is contained in:
Pierre Boutillier 2019-01-22 16:57:58 +01:00 committed by Grégoire Henry
parent 8f263d4da0
commit 28da6ef03b
No known key found for this signature in database
GPG Key ID: 50D984F20BD445D2
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
(library (library
(name ocplib_json_typed_browser) (name ocplib_json_typed_browser)
(public_name ocplib-json-typed-browser) (public_name ocplib-json-typed-browser)
(flags (:standard -w -9)) (flags (:standard -w -9 -open Js_of_ocaml))
(synopsis "Native browser representation of JSON documents") (synopsis "Native browser representation of JSON documents")
(libraries ocplib-json-typed js_of_ocaml) (libraries ocplib-json-typed js_of_ocaml)
(wrapped false)) (wrapped false))

View File

@ -12,5 +12,5 @@ run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
depends: [ depends: [
"dune" {build & >= "1.0.1"} "dune" {build & >= "1.0.1"}
"ocplib-json-typed" {= "0.6" } "ocplib-json-typed" {= "0.6" }
"js_of_ocaml" {>= "3.1.0"} "js_of_ocaml" {>= "3.3.0"}
] ]