-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelm.cabal
80 lines (73 loc) · 1.97 KB
/
helm.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
name: helm
version: 0.7.1
synopsis: A functionally reactive game engine.
description: A functionally reactive game engine, with headgear to protect you
from the headache of game development provided.
homepage: http://github.com/switchface/helm
bug-reports: http://github.com/switchface/helm/issues
license: MIT
license-file: LICENSE
tested-with: GHC == 7.6.3
extra-source-files: LICENSE, README.md
author: Zack Corr
maintainer: Zack Corr <[email protected]>
copyright: (c) 2013-2014, Zack Corr
category: Game Engine, FRP
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/switchface/helm.git
library
hs-source-dirs: src
default-language: Haskell2010
default-extensions: RecordWildCards, NamedFieldPuns
ghc-options: -Wall -fno-warn-unused-do-bind
exposed-modules:
FRP.Helm
FRP.Helm.Color
FRP.Helm.Graphics
FRP.Helm.Engine
FRP.Helm.Keyboard
FRP.Helm.Mouse
FRP.Helm.Random
FRP.Helm.Sample
FRP.Helm.Signal
FRP.Helm.Text
FRP.Helm.Time
FRP.Helm.Utilities
FRP.Helm.Window
build-depends:
base >= 4 && < 5,
cairo > 0.13 && < 0.14,
pango > 0.13 && < 0.14,
containers >= 0.5 && < 1,
elerea >= 2.7 && < 3,
filepath >= 1.3 && < 2,
sdl2 >= 1.3 && < 1.4,
text >= 1.1.1.3,
time >= 1.4 && < 1.5,
random >= 1.0.1.1 && < 1.2,
mtl >= 2.1 && < 2.2,
transformers >= 0.3.0.0,
cpu >= 0.1.2 && < 1
if impl(ghc < 7.6)
build-depends: ghc-prim
test-suite helm-tests
type: exitcode-stdio-1.0
x-uses-tf: true
ghc-options: -threaded -Wall -rtsopts -O
hs-source-dirs: tests, src
default-language: Haskell2010
main-is: Main.hs
build-depends:
base >= 4 && < 5,
cairo > 0.13 && < 0.14,
containers >= 0.5 && < 1,
HUnit >= 1.2 && < 2,
test-framework >= 0.8 && < 1,
test-framework-hunit >= 0.3 && < 1,
test-framework-quickcheck2 >= 0.3 && < 1,
time >= 1.4 && < 1.5,
elerea >= 2.7 && < 3,
sdl2 >= 1.3 && < 1.4