-
Notifications
You must be signed in to change notification settings - Fork 3
/
infinisweep.cabal
36 lines (34 loc) · 1.16 KB
/
infinisweep.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
name: infinisweep
version: 1.0.0
license-file: LICENSE
license: MIT
author: Basile Henry & David Eichmann
maintainer: [email protected]
copyright: 2016 Basile Henry & David Eichmann
2018 Basile Henry & Nathan van Doorn
2021 Basile Henry
2022 Basile Henry
category: Game
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Sweeper.Grid
Sweeper.Grid.BalancedTernary
Sweeper.Game
build-depends: base >= 4.9 && < 4.17
, random >= 1.1 && < 1.3
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable infinisweep
main-is: Main.hs
hs-source-dirs: app
build-depends: base
, directory >= 1.3.1 && < 1.4
, filepath >= 1.4.2 && < 1.5
, infinisweep
, optparse-applicative >= 0.11 && < 0.17
, random
, vty >= 5.21 && < 5.36
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded