1
Fork 0
This repository has been archived on 2023-12-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2022FuncProg-project2-patience/patience.cabal
2022-10-24 21:19:06 +02:00

23 lines
561 B
Text

name: patience
version: 1.0.0
author: Author name here
cabal-version: 1.12
build-type: Simple
library
hs-source-dirs: lib
build-depends: base >= 4.7 && <5
exposed-modules: VoorbeeldModule
executable patience
main-is: Main.hs
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.7 && <5, patience
test-suite patience-test
type: exitcode-stdio-1.0
main-is: VoorbeeldTest.hs
hs-source-dirs: test
default-language: Haskell2010
build-depends: base >=4.7 && <5, hspec <= 2.10.6, patience