uebung2017_2/zettel2.cabal

37 lines
1.1 KiB
Plaintext
Raw Normal View History

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
2017-04-30 21:33:56 +00:00
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
2017-04-30 21:33:56 +00:00
, ghc-vis
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/FFPiHaskell/zettel2-skeleton