-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomp1100-assignment3.cabal
More file actions
50 lines (46 loc) · 1.58 KB
/
comp1100-assignment3.cabal
File metadata and controls
50 lines (46 loc) · 1.58 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
name: comp1100-assignment3
synopsis: COMP1100 Assignment 3 - Sushi Go
version: 0.1.0.0
license: AllRightsReserved
author: Jack Kelly
maintainer: jack@jackkelly.name
copyright: 2018 The Australian National University
category: Graphics
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: AI
, Dragons.Moves
, Dragons.SushiGo
, ListUtils
, SushiGo
, TextLayout
build-depends: base >= 4.7 && < 4.13
, random >= 1.1 && < 1.2
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
executable sushigo
main-is: Main.hs
build-depends: base >= 4.7 && < 4.13
, comp1100-assignment3
hs-source-dirs: app
ghc-options: -threaded -Wall
default-language: Haskell2010
executable duel
main-is: Main.hs
build-depends: base >= 4.7 && < 4.13
, comp1100-assignment3
hs-source-dirs: duel
ghc-options: -threaded -Wall
default-language: Haskell2010
test-suite sushigo-test
type: exitcode-stdio-1.0
main-is: AllTests.hs
other-modules: SushiGoTests
, Testing
build-depends: base >= 4.7 && < 4.13
, comp1100-assignment3
hs-source-dirs: test
ghc-options: -threaded -Wall
default-language: Haskell2010