-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdynamic-graph.cabal
More file actions
51 lines (49 loc) · 2.07 KB
/
dynamic-graph.cabal
File metadata and controls
51 lines (49 loc) · 2.07 KB
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
name: dynamic-graph
version: 0.1.0.13
synopsis: Draw and update graphs in real time with OpenGL
description:
Draw and update graphs in real time with OpenGL. Suitable for displaying large amounts of frequently changing data. Line graphs and waterfall plots are supported, as well as axis drawing.
.
See <https://github.com/adamwalker/dynamic-graph> for examples of the graphs it can produce.
.
To get started, see "Graphics.DynamicGraph.Window"
license: BSD3
license-file: LICENSE
author: Adam Walker
maintainer: adamwalker10@gmail.com
copyright: 2018 Adam Walker
category: Graphics
homepage: https://github.com/adamwalker/dynamic-graph
bug-reports: https://github.com/adamwalker/dynamic-graph/issues
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
data-files: shaders/line.vert, shaders/line.frag, shaders/waterfall.vert, shaders/waterfall.frag, shaders/fill_line.vert, shaders/fill_line.frag, shaders/cairo.vert, shaders/cairo.frag
source-repository head
type: git
location: https://github.com/adamwalker/dynamic-graph
library
exposed-modules:
Graphics.DynamicGraph.Line,
Graphics.DynamicGraph.Waterfall,
Graphics.DynamicGraph.Util,
Graphics.DynamicGraph.FillLine,
Graphics.DynamicGraph.Axis,
Graphics.DynamicGraph.RenderCairo,
Graphics.DynamicGraph.ColorMaps,
Graphics.DynamicGraph.Window
-- other-modules:
-- other-extensions:
build-depends:
base >=4.6 && <5,
GLFW-b >=1.4 && <4,
OpenGL >=2.9 && <3.1,
GLUtil >=0.9.1 && <0.11,
transformers >=0.3 && <0.6,
pipes >=4.1 && <4.4,
pango >=0.13 && <0.14,
cairo >=0.13 && <0.14,
colour >=2.3 && <2.4
-- hs-source-dirs:
default-language: Haskell2010
other-modules: Paths_dynamic_graph