-
Notifications
You must be signed in to change notification settings - Fork 0
/
life.cabal
35 lines (32 loc) · 1.26 KB
/
life.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
-- Initial life.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: life
version: 0.1.0.0
synopsis: A Game of Life implementation
license: Apache-2.0
license-file: LICENSE
author: Sventimir
maintainer: [email protected]
category: Game
build-type: Simple
cabal-version: >=1.10
executable life
main-is: Main.hs
default-language: Haskell2010
ghc-options: -O2 -ddump-to-file -ddump-simpl -ddump-stg -threaded
build-depends: base >=4.8,
mtl,
containers,
stm,
gtk,
cairo
Test-suite test-life
type: exitcode-stdio-1.0
main-is: testSuite.hs
default-language: Haskell2010
ghc-options: -O2 -ddump-to-file -ddump-simpl -ddump-stg
build-depends: base,
HUnit,
mtl,
containers,
stm