6076ab737d15be6f4929e064bfce13480270a1ee
[advent-of-code-16.git] / adventofcode1622 / adventofcode1622.cabal
1 name: adventofcode1622
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 advent22
22 hs-source-dirs: app
23 main-is: advent22.hs
24 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
25 build-depends: base
26 , adventofcode1622
27 , adventofcode16
28 , parsec
29 , parsec-numbers
30 default-language: Haskell2010
31
32 executable advent22search
33 hs-source-dirs: app
34 main-is: advent22search.hs
35 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
36 build-depends: base
37 , adventofcode1622
38 , adventofcode16
39 , parsec
40 , parsec-numbers
41 default-language: Haskell2010
42
43 executable advent22showgrid
44 hs-source-dirs: app
45 main-is: advent22showgrid.hs
46 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
47 build-depends: base
48 , adventofcode1622
49 , adventofcode16
50 , parsec
51 , parsec-numbers
52 default-language: Haskell2010
53
54 executable advent22library
55 hs-source-dirs: app
56 main-is: advent22library.hs
57 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
58 build-depends: base
59 , adventofcode1622
60 , adventofcode16
61 , parsec
62 , parsec-numbers
63 , containers
64 , astar
65 , unordered-containers
66 , hashable
67 default-language: Haskell2010
68
69 test-suite adventofcode1622-test
70 type: exitcode-stdio-1.0
71 hs-source-dirs: test
72 main-is: Spec.hs
73 build-depends: base
74 , adventofcode1622
75 , adventofcode16
76 , split
77 ghc-options: -threaded -rtsopts -with-rtsopts=-N
78 default-language: Haskell2010
79
80 source-repository head
81 type: git
82 location: https://github.com/neilnjae/adventofcode16