-
Notifications
You must be signed in to change notification settings - Fork 0
/
_oasis
64 lines (53 loc) · 1.15 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
Name: Quadtrees
Version: 0.1
Synopsis: A project about Quadtrees.
Authors: yannis.weishaupt@gmail.com
License: MIT
OASISFormat: 0.4
BuildTools: ocamlbuild
Plugins: META (0.4), DevFiles (0.4)
#
# Quadtrees
#
Library "quadtrees"
Path: src
Modules: Point, Rectangle, Pquadtree, Rquadtree, RCquadtree
CompiledObject: best
BuildDepends: graphics
Executable "demo-quadtrees"
Path: src
Install: false
MainIs: Demo.ml
CompiledObject: best
BuildDepends: quadtrees
#
# Tests
#
Library "test-quadtrees"
Path: test
Modules: TestPquadtree, TestRquadtree, TestRCquadtree
Install: false
CompiledObject: best
BuildDepends: quadtrees
Executable "test-main"
Path: test
MainIs: Test.ml
Install: false
CompiledObject: best
Build$: flag(tests)
BuildDepends: oUnit (>= 2.0.0), test-quadtrees
Test "main"
Type: Custom (0.0.1)
Command: $test_main
#
# Docs
#
AlphaFeatures: ocamlbuild_more_args
Document "quadtrees"
Type: ocamlbuild (0.4)
BuildTools: ocamldoc
Title: API reference for quadtrees
XOCamlbuildPath: .
XOCamlbuildExtraArgs:
"-docflags '-colorize-code -short-functors -charset utf-8'"
XOCamlbuildLibraries: quadtrees