forked from deepfire/reflex-glfw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreflex-glfw.cabal
92 lines (85 loc) · 3.03 KB
/
reflex-glfw.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
-- Initial reflex-glfw.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: reflex-glfw
version: 0.1.0
synopsis: A GLFW-b adapter for Reflex FRP.
-- description:
homepage: https://github.com/deepfire/reflex-glfw/
license: BSD3
license-file: LICENSE
author: Kosyrev Serge
maintainer: [email protected]
-- copyright:
category: Graphics
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 8.0.2
, GHC == 7.10.3
, GHC == 7.8.4
library
exposed-modules: Reflex.GLFW
other-modules: Reflex.GLFW.Instances
hs-source-dirs: src
default-language: Haskell2010
other-extensions: FlexibleContexts
, DataKinds
, GADTs
, LambdaCase
, RankNTypes
, RecursiveDo
, RecordWildCards
, ScopedTypeVariables
, TupleSections
, UnicodeSyntax
, ConstraintKinds
, GeneralizedNewtypeDeriving
, KindSignatures
, PackageImports
, StandaloneDeriving
build-depends: base >=4.7
, base-unicode-symbols
, containers
, dependent-sum >=0.3
, GLFW-b >=1.4
, ghc-prim
, lens >=4
, mtl >=2.2
, OpenGLRaw >=3.2
, pretty >=1.1
, primitive
, reflex >=0.5
, ref-tf
, stm >=2.4
, transformers >=0.5
executable reflex-glfw-demo
default-language: Haskell2010
main-is: Demo.hs
other-extensions: FlexibleContexts
, DataKinds
, GADTs
, LambdaCase
, RankNTypes
, RecursiveDo
, RecordWildCards
, ScopedTypeVariables
, TupleSections
, UnicodeSyntax
, ConstraintKinds
, GeneralizedNewtypeDeriving
, KindSignatures
, PackageImports
, StandaloneDeriving
build-depends: base >=4.7
, base-unicode-symbols
, containers
, dependent-sum >=0.3
, GLFW-b >=1.4
, lens >=4
, mtl >=2.2
, OpenGL >=3.0
, OpenGLRaw >=3.2
, pretty >=1.1
, reflex >=0.5
, reflex-glfw
, stm >=2.4
, transformers >=0.5