-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaoc2020.cabal
45 lines (39 loc) · 1.09 KB
/
aoc2020.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
cabal-version: 2.2
name: aoc2020
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Nathan van Doorn
maintainer: nvd1234@gmail.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library problem1-lib
build-depends: base
hs-source-dirs: src/problem1
exposed-modules: Problem1
default-language: Haskell2010
executable problem1
build-depends: base
, problem1-lib
hs-source-dirs: bin
main-is: problem1.hs
default-language: Haskell2010
benchmark bench-problem1
build-depends: base
, problem1-lib
, criterion
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: problem1.hs
default-language: Haskell2010
executable problem2
build-depends: base
hs-source-dirs: bin
main-is: problem2.hs
default-language: Haskell2010
default-language: Haskell2010