-
Notifications
You must be signed in to change notification settings - Fork 176
/
haskell-dojo.cabal
44 lines (41 loc) · 946 Bytes
/
haskell-dojo.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.4
name: haskell-dojo
version: 0.1.0.0
synopsis: See README for more info
tested-with: GHC==8.10.7
description:
homepage: https://github.com/iburzynski/haskell-dojo
license: MIT
license-file: LICENSE
author: Ian Burzynski
maintainer: [email protected]
category: Example
extra-source-files:
.hlint.yaml
CHANGELOG.md
README.md
executable haskell-dojo
main-is: Main.hs
other-modules:
TTT.A1
, TTT.A2
, TTT.A3
, TTT.A4
, TTT.A5
, HM.A6
, HM.A7
, HM.A8
, HM.Provided
, Sandbox
build-depends:
base
, containers
, directory
, random
hs-source-dirs:
app
, src
default-extensions:
ImportQualifiedPost
, InstanceSigs
default-language: Haskell2010