-
Notifications
You must be signed in to change notification settings - Fork 2
/
game-of-life.cabal
37 lines (33 loc) · 1.26 KB
/
game-of-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
36
37
name: game-of-life
version: 0.0.1
synopsis: Conway's Game of Life
homepage: https://github.com/airt/game-of-life
license: MIT
license-file: license
author: airt
maintainer: [email protected]
build-type: Simple
extra-source-files: readme.md
cabal-version: >= 1.10
library
hs-source-dirs: src
default-language: Haskell2010
build-depends: base, containers, text, ansi-terminal
exposed-modules: Game, Game.Core, Game.IO, Game.Read, Game.Render
executable game-of-life-exe
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
main-is: Main.hs
build-depends: base, game-of-life, optparse-applicative
test-suite game-of-life-test
type: exitcode-stdio-1.0
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
main-is: Test.hs
build-depends: base, game-of-life, containers, tasty, tasty-hunit, tasty-quickcheck
other-modules: Game.CoreTest, Game.ReadTest
source-repository head
type: git
location: https://github.com/airt/game-of-life