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