-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaoc2021-haskell.cabal
90 lines (70 loc) · 1.6 KB
/
aoc2021-haskell.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
cabal-version: 2.4
name: aoc2021-haskell
version: 0.1.0.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
license: MIT
author: [email protected]
maintainer: [email protected]
-- A copyright notice.
-- copyright:
-- category:
extra-source-files:
CHANGELOG.md
README.md
-- Defining stub which can be reused for different executables or libraries.
-- learning from this aoc repo:
-- https://github.com/glguy/advent2021/blob/main/advent2021.cabal
common day
hs-source-dirs: execs
build-depends: base, containers, split
default-language: Haskell2010
executable Day1
import: day
main-is: Day1.hs
executable Day2
import: day
main-is: Day2.hs
executable Day3
import: day
main-is: Day3.hs
executable Day4
import: day
main-is: Day4.hs
executable Day5
import: day
main-is: Day5.hs
executable Day6
import: day
main-is: Day6.hs
build-depends: ilist
executable Day7
import: day
main-is: Day7.hs
executable Day8
import: day
main-is: Day8.hs
executable Day9
import: day
main-is: Day9.hs
executable Day10
import: day
main-is: Day10.hs
build-depends: mtl
executable Day11
import: day
main-is: Day11.hs
executable Day12
import: day
main-is: Day12.hs
executable Day13
import: day
main-is: Day13.hs
executable Day14
import: day
main-is: Day14.hs