Added second executable to cabal file
[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 executable advent18f
31 hs-source-dirs: app
32 main-is: advent18f.hs
33 ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
34 build-depends: base
35 , adventofcode1618
36 , adventofcode16
37 default-language: Haskell2010
38
39 test-suite adventofcode1618-test
40 type: exitcode-stdio-1.0
41 hs-source-dirs: test
42 main-is: Spec.hs
43 build-depends: base
44 , adventofcode1618
45 , adventofcode16
46 ghc-options: -threaded -rtsopts -with-rtsopts=-N
47 default-language: Haskell2010
48
49 source-repository head
50 type: git
51 location: git@git.njae.me.uk:advent-of-code-16