-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathLambdaWars.cabal
69 lines (63 loc) · 2.07 KB
/
LambdaWars.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
-- Initial LambdaWars.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: LambdaWars
version: 0.1.0.0
synopsis: A project of the London Haskell User Group to create a RoboWars like bot fighting game and learn some Haskell.
-- description:
homepage: https://github.com/andreyLevushkin/LambdaWars
license: MIT
license-file: LICENSE
author: London Haskell User Group
-- maintainer:
-- copyright:
category: Game
build-type: Simple
cabal-version: >=1.8
Data-Files: resources/body.tex
, resources/turret.tex
executable LambdaWars
main-is: Main.hs
hs-source-dirs: src, examples
extensions: OverloadedStrings
, TypeSynonymInstances
, FlexibleInstances
, MultiParamTypeClasses
, GeneralizedNewtypeDeriving
build-depends: base >= 4.5 && < 5
, mtl
, random
, MonadRandom
, monad-loops
, AC-Vector
, AC-Vector-Fancy
, AC-Angle
, fclabels
, time
, OpenGL >= 2.9
, GLUT
, pretty
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests, src
main-is: MainTestSuite.hs
build-depends: base
, HUnit
, QuickCheck
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
-- Duplication!
, blaze-svg
, mtl
, snap-core >= 0.9.2.2
, snap-server >= 0.9.2.4
, bytestring
, directory
, random
, MonadRandom
, monad-loops
, AC-Vector
, AC-Vector-Fancy
, AC-Angle
, fclabels
, pretty