2019-11-24 02:49:57 +01:00
|
|
|
name: minesweeper
|
|
|
|
|
version: 0.1.0.0
|
|
|
|
|
|
|
|
|
|
ghc-options: -Wall
|
|
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
|
base
|
|
|
|
|
|
|
|
|
|
library:
|
|
|
|
|
source-dirs: src/
|
|
|
|
|
exposed-modules:
|
|
|
|
|
Lib
|
|
|
|
|
dependencies:
|
|
|
|
|
- containers
|
2019-12-04 00:13:57 +01:00
|
|
|
- array
|
|
|
|
|
- split
|
|
|
|
|
- mtl
|
|
|
|
|
- random
|
2019-11-24 02:49:57 +01:00
|
|
|
|
|
|
|
|
executables:
|
|
|
|
|
minesweeper:
|
|
|
|
|
source-dirs: app/
|
|
|
|
|
main: Main.hs
|
|
|
|
|
dependencies:
|
2019-12-04 00:13:57 +01:00
|
|
|
- minesweeper
|
|
|
|
|
- random
|
2019-12-10 00:09:55 +01:00
|
|
|
- optparse-generic
|
2019-11-24 02:49:57 +01:00
|
|
|
|
|
|
|
|
tests:
|
|
|
|
|
minesweeper-test:
|
|
|
|
|
source-dirs: test/
|
|
|
|
|
main: Spec.hs
|
|
|
|
|
dependencies:
|
|
|
|
|
- minesweeper
|
|
|
|
|
- tasty
|
|
|
|
|
- tasty-hunit
|