-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliveplot.cabal
65 lines (59 loc) · 2.01 KB
/
liveplot.cabal
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
name: liveplot
version: 0.1.0.0
synopsis: Liveplotting
description: Live plotting with OpenGL. This Haskell library allows feeding live data via Pipes to OpenGL plots.
license: BSD3
license-file: LICENSE
author: Richard Marko
maintainer: [email protected]
copyright: Copyright (C) 2017 Richard Marko
category: Graphics
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Graphics.Liveplot
Graphics.Liveplot.Demo
Graphics.Liveplot.Line
Graphics.Liveplot.Shaders
Graphics.Liveplot.Types
Graphics.Liveplot.Utils
Graphics.Liveplot.Window
build-depends: base >= 4.6 && < 5,
andromeda,
bytestring,
containers,
directory,
filepath,
GLFW-b,
GLUtil,
lens,
linear,
mvc,
OpenGL,
pipes,
pipes-misc,
pipes-extras,
stm,
time,
transformers,
Vec,
vector,
vinyl,
vinyl-gl
default-language: Haskell2010
ghc-options: -Wall
executable liveplot
main-is: App.hs
hs-source-dirs: app
build-depends: base >= 4.6 && < 5,
mvc,
pipes,
liveplot
default-language: Haskell2010
executable liveplot-demo
main-is: Demo.hs
hs-source-dirs: app
build-depends: base >= 4.6 && < 5,
liveplot
default-language: Haskell2010