Broke days into individual pacakges
[advent-of-code-16.git] / adventofcode1608 / adventofcode1608.cabal
1 name: adventofcode1608
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 advent08
22 hs-source-dirs: app
23 main-is: advent08.hs
24 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
25 build-depends: base
26 , adventofcode1608
27 , adventofcode16
28 , array
29 , parsec
30 default-language: Haskell2010
31
32 test-suite adventofcode1608-test
33 type: exitcode-stdio-1.0
34 hs-source-dirs: test
35 main-is: Spec.hs
36 build-depends: base
37 , adventofcode1608
38 , adventofcode16
39 , array
40 , parsec
41 ghc-options: -threaded -rtsopts -with-rtsopts=-N
42 default-language: Haskell2010
43
44 source-repository head
45 type: git
46 location: https://github.com/neilnjae/adventofcode16