-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdvent-Of-Code.cabal
More file actions
111 lines (104 loc) · 2.53 KB
/
Advent-Of-Code.cabal
File metadata and controls
111 lines (104 loc) · 2.53 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
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
common days_new
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
library
import: warnings
exposed-modules: AOC, AOC.Utils
-- other-modules:
-- other-extensions:
build-depends: base,
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,
array,
bytestring,
criterion-measurement,
cryptonite,
extra,
ghc,
split,
Advent-Of-Code
hs-source-dirs: 2015/app, 2015/src
default-language: Haskell2010
executable AOC2025
import: warnings, days_new
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends:
base,
array,
containers,
criterion-measurement,
extra,
ghc,
memoize,
primes,
range-set-list,
safe,
sbv,
split,
Advent-Of-Code
hs-source-dirs: 2025/app, 2025/src
default-language: Haskell2010
ghc-options: -O2