Broke days into individual pacakges
[advent-of-code-16.git] / adventofcode1619 / adventofcode1619.cabal
1 name: adventofcode1619
2 version: 0.1.0.0
3 synopsis: Initial project template from stack
4 description: Please see README.md
5 homepage: https://github.com/neilnjae/adventofcode16#readme
6 license: BSD3
7 license-file: LICENSE
8 author: Neil Smith
9 maintainer: noone@njae.me.uk
10 copyright: 2016 Neil Smith
11 category: None
12 build-type: Simple
13 extra-source-files: README.md
14 cabal-version: >=1.10
15
16 library
17 hs-source-dirs: src
18 build-depends: base >= 4.7 && < 5
19 default-language: Haskell2010
20
21 executable advent19
22 hs-source-dirs: app
23 main-is: advent19.hs
24 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
25 build-depends: base
26 , adventofcode1619
27 , adventofcode16
28 , containers
29 default-language: Haskell2010
30
31 test-suite adventofcode1619-test
32 type: exitcode-stdio-1.0
33 hs-source-dirs: test
34 main-is: Spec.hs
35 build-depends: base
36 , adventofcode1619
37 , adventofcode16
38 , containers
39 ghc-options: -threaded -rtsopts -with-rtsopts=-N
40 default-language: Haskell2010
41
42 source-repository head
43 type: git
44 location: https://github.com/neilnjae/adventofcode16