uebung2017-4/zettel4.cabal

66 lines
2.0 KiB
Plaintext

name: zettel4
version: 0.1.0.0
synopsis: First Assignment of FFPiHaskell 2017
description: Zettel 4
homepage: https://github.com/FFPiHaskell/zettel4-skeleton#readme
license: BSD3
license-file: LICENSE
author: FFPiHaskell Tutors
maintainer: sdressel@techfak.uni-bielefeld.de
copyright: 2017 FFPiHaskell Tutors
category: cli
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
-- library for all things common in all exercises/not neccessary for students
-- to solve assignments
library
hs-source-dirs: src
exposed-modules: Lib
, GameLogic
, GameTypes
, GameConfig
, GameDraw
, Draw
build-depends: base >= 4.7 && < 5
, ncurses
, IfElse
, lens
, linear
, containers
default-language: Haskell2010
executable Game
hs-source-dirs: app
main-is: GameMain.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, zettel4
, IfElse
, lens
, linear
, containers
default-language: Haskell2010
test-suite Game-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Game-Spec.hs
build-depends: base
, zettel4
, test-framework
, test-framework-quickcheck2
, QuickCheck
, linear
, containers
, lens
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/FFPiHaskell/zettel4-skeleton