forked from gitpod-samples/template-haskell
-
Notifications
You must be signed in to change notification settings - Fork 59
/
TicHaskToe.cabal
36 lines (30 loc) · 999 Bytes
/
TicHaskToe.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
cabal-version: 2.4
name: TicHaskToe
version: 0.1.0.0
synopsis: See README for more info
tested-with: GHC==8.10.7
description: A guided Tic-Tac-Toe project, designed as a companion to the first part of EMURGO Academy's Haskell course.
homepage: https://github.com/gitpod-io/template-haskell
license: MIT
license-file: LICENSE
author: Ian Burzynski
maintainer: [email protected]
category: Example
extra-source-files:
.hlint.yaml
CHANGELOG.md
README.md
executable TicHaskToe
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: A1
, A2
, A3
, A4
, A5
, Sandbox
build-depends:
base ^>=4.14.1.0
, random
hs-source-dirs: solutions
default-language: Haskell2010