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