6875b3d256b550526fced48940cd1464acc8dc7e
[advent-of-code-16.git] / adventofcode1611 / adventofcode1611.cabal
1 name: adventofcode1611
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 advent11
22 hs-source-dirs: app
23 main-is: advent11.hs
24 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
25 build-depends: base
26 , adventofcode16
27 default-language: Haskell2010
28
29 executable advent11a
30 hs-source-dirs: app
31 main-is: advent11a.hs
32 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
33 build-depends: base
34 , adventofcode16
35 default-language: Haskell2010
36
37 executable advent11h
38 hs-source-dirs: app
39 main-is: advent11h.hs
40 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
41 build-depends: base
42 , adventofcode16
43 default-language: Haskell2010
44
45 executable advent11p
46 hs-source-dirs: app
47 main-is: advent11p.hs
48 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
49 build-depends: base
50 , adventofcode16
51 , pqueue
52 default-language: Haskell2010
53
54 test-suite adventofcode1611-test
55 type: exitcode-stdio-1.0
56 hs-source-dirs: test
57 main-is: Spec.hs
58 build-depends: base
59 , adventofcode1611
60 , adventofcode16
61 , split
62 ghc-options: -threaded -rtsopts -with-rtsopts=-N
63 default-language: Haskell2010
64
65 source-repository head
66 type: git
67 location: https://github.com/neilnjae/adventofcode16