-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworms.cabal
More file actions
114 lines (90 loc) · 2.57 KB
/
Copy pathworms.cabal
File metadata and controls
114 lines (90 loc) · 2.57 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
cabal-version: 3.4
name: worms
version: 0.0.0.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
license: NONE
-- The package author(s).
author: José Diogo Ferreira Barbosa <a96609@alunos.uminho.pt>
category: Game
build-type: Simple
extra-doc-files: README.md
common warnings
ghc-options: -Wall
library
import: warnings
-- Modules exported by the library.
exposed-modules:
Tarefa4
tipos
Tarefa0_geral
Tarefa0_2025
Tarefa1
Tarefa2
Tarefa3
Tarefa6
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends:
base
hs-source-dirs: lib
default-language: GHC2021
executable t1-feedback
import: warnings
other-modules:
Magic
other-extensions:
main-is: Tarefa1Test.hs
build-depends:
base, uri-encode, open-browser, bytestring, base64-bytestring, deepseq, bytes, bits, worms
hs-source-dirs: test
default-language: GHC2021
executable t2-feedback
import: warnings
other-modules:
Magic
other-extensions:
main-is: Tarefa2Test.hs
build-depends:
base, uri-encode, open-browser, bytestring, base64-bytestring, deepseq, bytes, bits, worms
hs-source-dirs: test
default-language: GHC2021
executable t3-feedback
import: warnings
other-modules:
Magic
other-extensions:
main-is: Tarefa3Test.hs
build-depends:
base, uri-encode, open-browser, bytestring, base64-bytestring, deepseq, bytes, bits, worms
hs-source-dirs: test
default-language: GHC2021
executable t4-feedback
import: warnings
other-modules:
Magic
other-extensions:
main-is: Tarefa4Test.hs
build-depends:
base, uri-encode, open-browser, bytestring, base64-bytestring, deepseq, bytes, bits, worms
hs-source-dirs: test
default-language: GHC2021
executable worms-game
import: warnings
-- Modules included in this executable, other than Main.
other-modules:
Worms
Desenhar
Eventos
Tempo
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
main-is: Main.hs
build-depends:
base, gloss, gloss-juicy, worms
hs-source-dirs: app
default-language: GHC2021