-
Notifications
You must be signed in to change notification settings - Fork 0
/
pacman.cabal
46 lines (41 loc) · 1.35 KB
/
pacman.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
name: pacman
version: 0.1.0.0
-- synopsis:
-- description:
license: MIT
license-file: LICENSE
author: zcesur
maintainer: zafercesur@gmail.com
-- copyright:
category: Game
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/zcesur/pacman.git
library
exposed-modules: Animation, World, Event, Rendering, Util, Types
build-depends: base, gloss >=1.11 && <1.12, random
hs-source-dirs: src
default-language: Haskell2010
executable pacman
main-is: Pacman.hs
-- other-modules:
-- other-extensions:
build-depends: base, gloss >=1.11 && <1.12, pacman, random
hs-source-dirs: executables
default-language: Haskell2010
executable generator
main-is: MapGenerator.hs
-- other-modules:
-- other-extensions:
build-depends: base, pacman
hs-source-dirs: executables
default-language: Haskell2010
test-suite unit-tests
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: tests
build-depends: base, pacman, hspec, hspec-discover
default-language: Haskell2010