blob: c4d2ef4cf48fc51a2da54f5045c4acc58e055191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
name: onecard
version: 0.1.0
build-type: Simple
cabal-version: 1.18
library
default-language: Haskell2010
exposed-modules: Game, Player, Card, Color
hs-source-dirs: src
build-depends: base, random
ghc-options: -dynamic
executable onecard
default-language: Haskell2010
hs-source-dirs: src
build-depends: base, random, optparse-applicative, onecard
main-is: Main.hs
other-modules: Game, Player, Card, Color
ghc-options: -dynamic
|