23 lines
465 B
YAML
23 lines
465 B
YAML
|
name: Minesweeper
|
||
|
version: 1.0.0.0
|
||
|
license: AllRightsReserved
|
||
|
author: Jack Harley
|
||
|
maintainer: jackpharley@gmail.com
|
||
|
copyright: 2020 Jack Harley
|
||
|
|
||
|
description: CSU44012 Assignment 2
|
||
|
|
||
|
dependencies:
|
||
|
- base
|
||
|
- random
|
||
|
|
||
|
#extra-source-files:
|
||
|
|
||
|
executables:
|
||
|
Minesweeper:
|
||
|
main: Main.hs
|
||
|
source-dirs: src
|
||
|
ghc-options:
|
||
|
- -threaded
|
||
|
- -rtsopts
|
||
|
- -with-rtsopts=-N
|