-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgraphics-efl.cabal
148 lines (124 loc) · 3.14 KB
/
graphics-efl.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
name: graphics-efl
version: 0.2.0.0
synopsis: Bindings to EFL (Enlightenment Foundation Libraries)
-- description:
license: BSD3
license-file: LICENSE
author: Sylvain HENRY
maintainer: [email protected]
-- copyright:
category: Graphics
build-type: Simple
cabal-version: >=1.8
-- License: http://commons.wikimedia.org/wiki/File:Red_Giant_Earth_warm.jpg
data-files:
examples/data/Red_Giant_Earth_warm.jpg
library
exposed-modules:
Graphics.Efl.Core
Graphics.Efl.Core.Animator
Graphics.Efl.Core.Job
Graphics.Efl.Core.Types
Graphics.Efl.Core.Idle
Graphics.Efl.Eina
Graphics.Efl.Window
Graphics.Efl.Window.Types
Graphics.Efl.Simple
Graphics.Efl.Helpers
Graphics.Efl.Canvas
Graphics.Efl.Canvas.Types
Graphics.Efl.Canvas.BasicObject
Graphics.Efl.Canvas.Image
Graphics.Efl.Canvas.Rectangle
Graphics.Efl.Canvas.Polygon
Graphics.Efl.Canvas.Line
Graphics.Efl.Canvas.Text
Graphics.Efl.Canvas.TextBlock
Graphics.Efl.Canvas.Events
Graphics.Efl.Canvas.MouseEvents
Graphics.Efl.Canvas.MultiEvents
Graphics.Efl.Canvas.KeyEvents
Graphics.Efl.Canvas.MiscEvents
Graphics.Efl.Canvas.Map
Graphics.Efl.Canvas.Engine
Graphics.Efl.Canvas.ViewPort
Graphics.Efl.Canvas.Pointer
Graphics.Efl.Canvas.Misc
Graphics.Efl.Widgets.Event
Graphics.Efl.Widgets.Reactive
Graphics.Efl.Widgets.Window
Graphics.Efl.Widgets.Widget
Graphics.Efl.Widgets.Layout
Graphics.Efl.Widgets.BasicObject
Graphics.Efl.Widgets.Rectangle
Graphics.Efl.Widgets.Text
Graphics.Efl.Widgets.Button
PkgConfig-Depends:
eina,
evas,
ecore,
ecore-evas
extra-libraries:
eina
ecore
ecore_evas
evas
build-depends:
base,
vector,
transformers,
system-time-monotonic,
containers
hs-source-dirs: src
build-tools: c2hs, hsc2hs
ghc-options: -Wall -threaded
Test-Suite test-evas
type: exitcode-stdio-1.0
main-is: test-evas.hs
hs-source-dirs: tests
build-depends: base, graphics-efl
executable TextEditor
main-is: TextEditor.hs
other-modules:
build-depends:
base,
graphics-efl
hs-source-dirs: examples
ghc-options: -Wall -threaded
executable Simple
main-is: Simple.hs
other-modules:
Paths_graphics_efl
build-depends:
base,
graphics-efl
hs-source-dirs: examples
ghc-options: -Wall -threaded
executable Reactive
main-is: Reactive.hs
other-modules:
build-depends:
base,
graphics-efl,
stm == 2.4.*,
stm-linkedlist == 0.1.*
hs-source-dirs: examples
ghc-options: -Wall -threaded
executable Simple2
main-is: Simple2.hs
other-modules:
build-depends:
base,
graphics-efl,
transformers
hs-source-dirs: examples
ghc-options: -Wall -threaded
executable ImageViewer
main-is: ImageViewer.hs
build-depends:
base,
graphics-efl,
vector,
stm
hs-source-dirs: examples
ghc-options: -Wall -threaded