101 lines
3.1 KiB
Plaintext
101 lines
3.1 KiB
Plaintext
|
name: zettel10
|
||
|
version: 0.1.0.0
|
||
|
synopsis: First Assignment of FFPiHaskell 2017
|
||
|
-- description:
|
||
|
homepage: https://github.com/FFPiHaskell/zettel10#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: Parallel
|
||
|
, KomplizierteFunktion
|
||
|
, Banking
|
||
|
, STMBanking
|
||
|
build-depends: base >= 4.7 && < 5
|
||
|
, parallel
|
||
|
, array
|
||
|
, deepseq
|
||
|
, stm
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
executable MainParallel1
|
||
|
hs-source-dirs: app
|
||
|
main-is: MainParallel1.hs
|
||
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||
|
build-depends: base
|
||
|
, zettel10
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
executable MainParallel2
|
||
|
hs-source-dirs: app
|
||
|
main-is: MainParallel2.hs
|
||
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||
|
build-depends: base
|
||
|
, zettel10
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
executable MainParallel3
|
||
|
hs-source-dirs: app
|
||
|
main-is: MainParallel3.hs
|
||
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||
|
build-depends: base
|
||
|
, zettel10
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
executable MainBanking1
|
||
|
hs-source-dirs: app
|
||
|
main-is: MainBanking1.hs
|
||
|
ghc-options: -threaded -eventlog -rtsopts -with-rtsopts=-N
|
||
|
build-depends: base
|
||
|
, zettel10
|
||
|
, threads
|
||
|
, time
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
executable MainBanking2
|
||
|
hs-source-dirs: app
|
||
|
main-is: MainBanking2.hs
|
||
|
ghc-options: -threaded -eventlog -rtsopts -with-rtsopts=-N
|
||
|
build-depends: base
|
||
|
, zettel10
|
||
|
, threads
|
||
|
, time
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
executable MainSTMBanking1
|
||
|
hs-source-dirs: app
|
||
|
main-is: MainSTMBanking1.hs
|
||
|
ghc-options: -threaded -eventlog -rtsopts -with-rtsopts=-N
|
||
|
build-depends: base
|
||
|
, zettel10
|
||
|
, threads
|
||
|
, time
|
||
|
, stm
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
executable MainSTMBanking2
|
||
|
hs-source-dirs: app
|
||
|
main-is: MainSTMBanking2.hs
|
||
|
ghc-options: -threaded -eventlog -rtsopts -with-rtsopts=-N
|
||
|
build-depends: base
|
||
|
, zettel10
|
||
|
, threads
|
||
|
, time
|
||
|
, stm
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
source-repository head
|
||
|
type: git
|
||
|
location: https://github.com/FFPiHaskell/zettel10
|