-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpg-engine.cabal
37 lines (34 loc) · 1.11 KB
/
rpg-engine.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
name: rpg-engine
version: 1.0.0
author: Lukas Barragan Torres
cabal-version: 1.12
build-type: Simple
library
hs-source-dirs: lib
build-depends: base >= 4.7 && <5,
parsec >= 3.1.15.1,
gloss >= 1.11 && < 1.14,
gloss-juicy >= 0.2.3,
directory >= 1.3.6.2,
containers
exposed-modules: ParserModule,
TypeModule,
PlayerModule,
LevelModule,
RenderModule,
GameModule,
LevelChooserModule,
RenderConstants,
InputModule,
ActionPanelModule
executable rpg-engine
main-is: Main.hs
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.7 && <5, rpg-engine
test-suite rpg-engine-test
type: exitcode-stdio-1.0
main-is: VoorbeeldTest.hs
hs-source-dirs: test
default-language: Haskell2010
build-depends: base >=4.7 && <5, hspec <= 2.10.6, rpg-engine, hspec-parsec, parsec