-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhells.cabal
38 lines (35 loc) · 1.17 KB
/
hells.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
-- Initial hells.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: hells
version: 0.1.0.0
synopsis: Implementation of the game of Hells
-- description:
license: PublicDomain
-- license-file: LICENSE
author: Nicholas Clarke
maintainer: [email protected]
-- copyright:
category: Game
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable hells
main-is: game.hs
other-modules: Hells.Common
,Hells.Setter
,Hells.Guesser
,Hells.Strategy.Simple
-- other-extensions:
build-depends: base >=4.6 && <4.7
,random
-- hs-source-dirs:
default-language: Haskell2010
library
exposed-modules: Hells.Common
,Hells.Setter
,Hells.Guesser
,Hells.Strategy.Simple
GHC-Options: -O2
build-depends: base >=4.6 && < 5
,random
default-language: Haskell2010