-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPlot-ho-matic.cabal
96 lines (86 loc) · 2.98 KB
/
Plot-ho-matic.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: Plot-ho-matic
version: 0.12.2.3
synopsis: Real-time line plotter for generic data
license: BSD3
license-file: LICENSE
author: Greg Horn
maintainer: [email protected]
copyright: Copyright (c) 2013-2015, Greg Horn
category: Graphics
build-type: Simple
cabal-version: >=1.10
extra-source-files:
.gitignore
.travis.yml
CHANGELOG.md
README.md
description: {
Plot-ho-matic provides real-time plotting of time-series data with a simple interface ('addHistoryChannel').
There is also a more general interface to plot arbitrary data ('addChannel').
.
See the example on <http://www.github.com/ghorn/Plot-ho-matic> to help get started.
}
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: PlotHo, SetHo
other-modules: PlotHoCommon
PlotHo.Channel
PlotHo.ChartRender
PlotHo.HistoryChannel
PlotHo.GraphWidget
PlotHo.OptionsWidget
PlotHo.Plotter
PlotHo.PlotTypes
PlotHo.SignalSelector
SetHo.LookupTree
build-depends: base >= 4.6.0.0 && < 5
, bytestring
, cairo
, cereal
, Chart >= 1.1
, Chart-cairo >= 1.1
, colour
, containers
, data-default-class
, generic-accessors >= 0.7.1.0
, glib
, gtk3 >= 0.14.2
, lens
, text
, time
, transformers
, vector
ghc-options: -O2 -Wall -Werror
ghc-prof-options: -O2 -Wall -Werror
flag examples
description: build the examples
default: False
executable plot-example
if flag(examples)
Buildable: True
else
Buildable: False
hs-source-dirs: examples
main-is: PlotExample.hs
default-language: Haskell2010
build-depends: base >= 4.5 && < 5
, Plot-ho-matic
, containers
ghc-options: -O2 -Wall -threaded "-with-rtsopts=-T -N1"
ghc-prof-options: -O2 -Wall -threaded "-with-rtsopts=-T -N1"
-- ghc-options: -O2 -Wall -threaded "-with-rtsopts=-T -N1 -ls" -threaded -eventlog
-- ghc-prof-options: -O2 -Wall -threaded "-with-rtsopts=-T -N1 -ls" -threaded -eventlog
executable set-example
if flag(examples)
Buildable: True
else
Buildable: False
hs-source-dirs: examples
main-is: SetExample.hs
default-language: Haskell2010
build-depends: base >= 4.5 && < 5
, Plot-ho-matic
, generic-accessors
ghc-options: -O2 -Wall -with-rtsopts=-T
ghc-prof-options: -O2 -Wall -with-rtsopts=-T