uebung2017_2/zettel2.cabal
Yannick Gottschalk aab564e716 Added Aufgabe 4
2017-04-30 23:33:56 +02:00

37 lines
1.1 KiB
Plaintext

name: zettel2
version: 0.1.0.0
synopsis: Second Assignment of FFPiHaskell 2017
-- description:
homepage: https://github.com/FFPiHaskell/zettel2-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: Aufgabe4
build-depends: base >= 4.7 && < 5
default-language: Haskell2010
executable aufgabe4
hs-source-dirs: app
main-is: Aufgabe4Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, zettel2
, ghc-vis
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/FFPiHaskell/zettel2-skeleton