-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsqlgg.opam
35 lines (35 loc) · 1.11 KB
/
sqlgg.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
opam-version: "2.0"
maintainer: "[email protected]"
authors: ["ygrek"]
homepage: "https://ygrek.org/p/sqlgg/"
dev-repo: "git+https://github.com/ygrek/sqlgg.git"
bug-reports: "https://github.com/ygrek/sqlgg/issues"
license: "GPL-2.0-only"
tags: [ "org:ygrek" ]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "2.0"}
"menhir" {>= "20180523"}
"mybuild" {> "3"}
"ppx_deriving" {>= "4.3"}
("extlib" {>= "1.7.8"} | "extlib-compat" {>= "1.7.8"})
"base-unix"
"odoc" {with-doc}
"ounit"
]
depopts: [
"mariadb"
"mysql"
"sqlite3"
]
synopsis: "SQL Guided (code) Generator"
description: """
sqlgg is an SQL query parser and binding code generator for C#, C++, Java, OCaml.
It starts off with SQL schema and queries, and generates code (or XML, allowing
further code generation for various purposes). Generated code only defines a mapping
of output columns and query parameters to the host language, trying to be as unobtrusive
as possible and leaving the choice of SQL database (and API to access it) to the developer."""