ocplib-json-typed: follow upstream file organization

This commit is contained in:
Pierre Boutillier 2019-01-15 10:28:09 +01:00
parent 464de6d6b8
commit 8012bdca65
No known key found for this signature in database
GPG Key ID: C2F73508B56A193C
19 changed files with 26 additions and 21 deletions

View File

@ -1,7 +0,0 @@
(library
(name ocplib_json_typed)
(public_name ocplib-json-typed)
(flags (:standard -w -9))
(synopsis "Reliable manipulation of JSON objects")
(libraries uri)
(wrapped false))

View File

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

View File

@ -1,7 +0,0 @@
(library
(name ocplib_json_typed_bson)
(public_name ocplib-json-typed-bson)
(flags (:standard -w -9))
(synopsis "BSON representation of JSON documents")
(libraries ocplib-json-typed ocplib-endian)
(wrapped false))

26
vendors/ocplib-json-typed/src/dune vendored Normal file
View File

@ -0,0 +1,26 @@
(library
(name ocplib_json_typed)
(public_name ocplib-json-typed)
(flags (:standard -w -9))
(modules json_encoding json_query json_repr json_schema)
(synopsis "Reliable manipulation of JSON objects")
(libraries uri)
(wrapped false))
(library
(name ocplib_json_typed_bson)
(public_name ocplib-json-typed-bson)
(flags (:standard -w -9))
(modules json_repr_bson)
(synopsis "BSON representation of JSON documents")
(libraries ocplib-json-typed ocplib-endian)
(wrapped false))
(library
(name ocplib_json_typed_browser)
(public_name ocplib-json-typed-browser)
(flags (:standard -w -9 -open Js_of_ocaml))
(modules json_repr_browser)
(synopsis "Native browser representation of JSON documents")
(libraries ocplib-json-typed js_of_ocaml)
(wrapped false))