lamb/lamb.cabal

33 lines
946 B
Text

cabal-version: 3.0
name: lamb
version: 0.1.0.0
license: NONE
author: jingus
maintainer: jack@jingus.dev
build-type: Simple
common warnings
ghc-options: -Wall
executable lamb
import: warnings
main-is: Main.hs
other-modules: Parser,
Evaluation,
Bruijn
build-depends: base, containers, parsec
hs-source-dirs: src
default-language: Haskell2010
test-suite lamb-tests
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: src, test
other-modules: Parser,
ParserSpec,
Evaluation,
EvaluationSpec,
BruijnSpec
build-depends: base, containers, hspec, parsec
build-tool-depends: hspec-discover:hspec-discover
default-language: Haskell2010