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