Initial commit
This commit is contained in:
commit
4e77f37a5f
9 changed files with 289 additions and 0 deletions
51
minesweeper.cabal
Normal file
51
minesweeper.cabal
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
cabal-version: 1.12
|
||||
|
||||
-- This file has been generated from package.yaml by hpack version 0.31.1.
|
||||
--
|
||||
-- see: https://github.com/sol/hpack
|
||||
--
|
||||
-- hash: 73d25bfaacbe65c083033b14864aa14b133058ca0e7c877622a08afb39ca460c
|
||||
|
||||
name: minesweeper
|
||||
version: 0.1.0.0
|
||||
build-type: Simple
|
||||
|
||||
library
|
||||
exposed-modules:
|
||||
Lib
|
||||
other-modules:
|
||||
Paths_minesweeper
|
||||
hs-source-dirs:
|
||||
src/
|
||||
ghc-options: -Wall
|
||||
build-depends:
|
||||
base
|
||||
, containers
|
||||
default-language: Haskell2010
|
||||
|
||||
executable minesweeper
|
||||
main-is: Main.hs
|
||||
other-modules:
|
||||
Paths_minesweeper
|
||||
hs-source-dirs:
|
||||
app/
|
||||
ghc-options: -Wall
|
||||
build-depends:
|
||||
base
|
||||
, minesweeper
|
||||
default-language: Haskell2010
|
||||
|
||||
test-suite minesweeper-test
|
||||
type: exitcode-stdio-1.0
|
||||
main-is: Spec.hs
|
||||
other-modules:
|
||||
Paths_minesweeper
|
||||
hs-source-dirs:
|
||||
test/
|
||||
ghc-options: -Wall
|
||||
build-depends:
|
||||
base
|
||||
, minesweeper
|
||||
, tasty
|
||||
, tasty-hunit
|
||||
default-language: Haskell2010
|
||||
Loading…
Add table
Add a link
Reference in a new issue