Files
Game-of-Life-Exercism/game-of-life.cabal
Aadhavan Srinivasan fa27a5d0ba First commit
2025-01-17 11:38:50 -05:00

35 lines
635 B
Plaintext

cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: game-of-life
version: 1.0.0.0
build-type: Simple
library
exposed-modules:
GameOfLife
other-modules:
Paths_game_of_life
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Tests.hs
other-modules:
Paths_game_of_life
hs-source-dirs:
test
build-depends:
base
, game-of-life
, hspec
default-language: Haskell2010