forked from darioteixeira/pgocaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_oasis
87 lines (75 loc) · 2.68 KB
/
_oasis
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
OASISFormat: 0.4
Name: PG'OCaml
Version: 3.0
Synopsis: OCaml bindings for the PostgreSQL database
Authors: Richard W. M. Jones et al.
Maintainers: Dario Teixeira
License: LGPL-2.0 with OCaml linking exception
LicenseFile: LICENSE.txt
Plugins: META (0.4), DevFiles (0.4)
BuildTools: ocamlbuild, make
PreBuildCommand: $make config
Flag "pgprof"
Description: Build PG'OCaml profiling utility
Default: true
Flag "p4"
Description: PG'OCaml syntax extension
Default: false
Library "pgocaml"
Path: src
Modules: PGOCaml_aux, PGOCaml, PGOCaml_generic, PGOCaml_config
BuildDepends: unix, calendar, csv, re, bytes, hex
FindlibName: pgocaml
XMETARequires: unix, calendar, csv, re, bytes, hex
Library "pa_pgsql"
Path: src
Build$: flag(p4)
Modules: Pa_pgsql
CompiledObject: byte
BuildDepends: pgocaml, camlp4, camlp4.quotations, camlp4.extend
FindlibParent: pgocaml
FindlibName: syntax
XMETAType: syntax
XMETADescription: Syntax extension for PG'OCaml
XMETARequires: pgocaml, camlp4
Document "APIDOC"
Install: true
InstallDir: $htmldir
Title: API reference for PG'OCaml
Type: ocamlbuild (0.4)
BuildTools+: ocamldoc
XOCamlbuildPath: src
XOCamlbuildLibraries: pgocaml
Executable "pgocaml_prof"
Build$: flag(pgprof)
Install: false
Path: utils
MainIs: pgocaml_prof.ml
BuildDepends: pgocaml
Executable "test_pgocaml_lowlevel"
Build$: flag(tests)
Install: false
Path: tests
MainIs: test_pgocaml_lowlevel.ml
BuildDepends: pgocaml
Executable "test_pgocaml_highlevel"
Build$: flag(tests) && flag(p4)
Install: false
Path: tests
MainIs: test_pgocaml_highlevel.ml
BuildDepends: pgocaml, pgocaml.syntax
Executable "test_re"
Build$: flag(tests)
Install: false
Path: tests
MainIs: test_re.ml
BuildDepends: pgocaml, oUnit
Test "pgocaml_lowlevel"
Command: $test_pgocaml_lowlevel
WorkingDirectory: tests
Test "pgocaml_highlevel"
Command: $test_pgocaml_highlevel
WorkingDirectory: tests
Test "test_re"
Command: $test_re
WorkingDirectory: tests