Changed path to repo and readme
[advent-of-code-16.git] / adventofcode1618 / adventofcode1618.cabal
1 name: adventofcode1618
2 version: 0.1.0.0
3 synopsis: Initial project template from stack
4 description: Please see README.md
5 homepage: https://git.njae.me.uk/?p=advent-of-code-16.git;a=blob_plain;f=README.html
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 advent18
22 hs-source-dirs: app
23 main-is: advent18.hs
24 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
25 build-depends: base
26 , adventofcode1618
27 , adventofcode16
28 default-language: Haskell2010
29
30 test-suite adventofcode1618-test
31 type: exitcode-stdio-1.0
32 hs-source-dirs: test
33 main-is: Spec.hs
34 build-depends: base
35 , adventofcode1618
36 , adventofcode16
37 ghc-options: -threaded -rtsopts -with-rtsopts=-N
38 default-language: Haskell2010
39
40 source-repository head
41 type: git
42 location: git@git.njae.me.uk:advent-of-code-16