-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdvent-Of-Code.cabal
73 lines (68 loc) · 1.72 KB
/
Advent-Of-Code.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
cabal-version: 3.0
name: Advent-Of-Code
version: 0.1.0.0
-- synopsis:
-- description:
license: 0BSD
author: Sheinxy
maintainer: none
-- copyright:
build-type: Simple
-- extra-source-files:
common warnings
ghc-options: -Wall
common days
other-modules: Day01.Main,
Day02.Main,
Day03.Main,
Day04.Main,
Day05.Main,
Day06.Main,
Day07.Main,
Day08.Main,
Day09.Main,
Day10.Main,
Day11.Main,
Day12.Main,
Day13.Main,
Day14.Main,
Day15.Main,
Day16.Main,
Day17.Main,
Day18.Main,
Day19.Main,
Day20.Main,
Day21.Main,
Day22.Main,
Day23.Main,
Day24.Main,
Day25.Main
library
import: warnings
exposed-modules: AOC
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.17.2.1,
bytestring,
http-client,
http-conduit,
http-types,
regex-tdfa
hs-source-dirs: common
default-language: Haskell2010
executable AOC2015
import: days
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends:
base ^>=4.17.2.1,
array,
bytestring,
criterion-measurement,
cryptonite,
extra,
split,
Advent-Of-Code
hs-source-dirs: 2015/app, 2015/src
default-language: Haskell2010