-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransient-sdl2-example.cabal
29 lines (27 loc) · 1.26 KB
/
transient-sdl2-example.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
name: transient-sdl2-example
version: 0.0.0.1
author: Kuklin Nikolai
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
executable uncomposable
main-is: Uncomposable.hs
ghc-options: -threaded -O2 -Wall
-fprint-explicit-foralls -fprint-explicit-kinds
default-extensions: OverloadedStrings
, LambdaCase
build-depends: base
, transformers
, sdl2
default-language: Haskell2010
executable composable
main-is: Composable.hs
ghc-options: -threaded -O2 -Wall
-fprint-explicit-foralls -fprint-explicit-kinds
default-extensions: OverloadedStrings
, LambdaCase
build-depends: base
, transformers
, sdl2
, transient == 0.5.8
default-language: Haskell2010