-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclones.cabal
103 lines (74 loc) · 2.59 KB
/
clones.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
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
-- Initial clones.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: ccclones
version: 0.2
synopsis: Classic games reimplemented
-- description:
homepage: http://callumscode.com/projects
license: GPL-3
license-file: LICENSE
author: Callum Lowcay
maintainer: [email protected]
-- copyright:
category: Game
build-type: Simple
extra-source-files: README
cabal-version: >=1.10
data-files: sfx/*.wav levels/*.dat gfx/*.bmp
fonts/titillium/*.otf fonts/titillium/*.txt
highscores
data-dir: src_assets
Flag Debug
Description: Enable debug mode
Default: False
Flag Cheating
Description: Enable cheat codes
Default: False
executable tetris
main-is: tetris.hs
other-modules: Paths_ccclones
build-depends: base >=4.9 && <5, SDL-mixer, SDL, SDL-ttf,
mtl, containers, transformers, array,
filepath, random, directory
default-extensions: CPP
ghc-options: -fno-warn-tabs
if flag(Debug)
cpp-options: -DDEBUG
if flag(Cheating)
cpp-options: -DCHEATING
if os(windows)
ld-options: -mwindows tetrisres.o
hs-source-dirs: src
default-language: Haskell2010
executable snake
main-is: snake.hs
other-modules: Paths_ccclones
build-depends: base >=4.9 && <5, SDL-mixer, SDL, SDL-ttf,
mtl, containers, transformers, array,
filepath, random, directory
default-extensions: CPP
ghc-options: -fno-warn-tabs
if flag(Debug)
cpp-options: -DDEBUG
if flag(Cheating)
cpp-options: -DCHEATING
if os(windows)
ld-options: -mwindows snakeres.o
hs-source-dirs: src
default-language: Haskell2010
executable spaceships
main-is: spaceships.hs
other-modules: Paths_ccclones
build-depends: base >=4.9 && <5, SDL-mixer, SDL, SDL-ttf,
mtl, containers, transformers, array,
filepath, random, directory, monad-loops, Yampa >= 0.10.4
default-extensions: CPP
ghc-options: -fno-warn-tabs
if flag(Debug)
cpp-options: -DDEBUG
if flag(Cheating)
cpp-options: -DCHEATING
if os(windows)
ld-options: -mwindows dogfightres.o
hs-source-dirs: src
default-language: Haskell2010