-
Notifications
You must be signed in to change notification settings - Fork 12
/
reflex-sdl2.cabal
48 lines (44 loc) · 1.81 KB
/
reflex-sdl2.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
name: reflex-sdl2
version: 0.3.0.3
synopsis: SDL2 and reflex FRP
description: A minimal host for sdl2 based reflex apps.
homepage: https://github.com/schell/reflex-sdl2#readme
license: MIT
license-file: LICENSE
author: Schell Scivally
maintainer: [email protected]
copyright: Copyright: (c) 2017 - 2019 Schell Scivally
category: Game
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Reflex.SDL2
, Reflex.SDL2.Internal
, Reflex.SDL2.Class
, Reflex.SDL2.Base
build-depends: async >= 2.1 && < 2.3
, base >= 4.7 && < 5
, containers >= 0.5 && < 0.7
, dependent-sum >= 0.7 && < 0.8
, exception-transformers >= 0.4 && < 0.5
, ref-tf >= 0.5 && < 0.6
, mtl >= 2.3 && < 2.4
, reflex >= 0.9 && < 0.10
, sdl2 >= 2.5 && < 2.6
, stm >= 2.4 && < 2.6
default-language: Haskell2010
executable reflex-sdl2-exe
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, mtl
, reflex >= 0.9
, reflex-sdl2
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/schell/reflex-sdl2