-
Notifications
You must be signed in to change notification settings - Fork 2
/
robo-monad.cabal
81 lines (77 loc) · 2.31 KB
/
robo-monad.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
name: robo-monad
version: 0.2.0.0
synopsis: A DSL and simulation environment for robot battles.
description: A DSL and simulation environment for robot battles.
license: GPL-3
license-file: LICENSE
author: Bradley Hardy
maintainer: [email protected]
copyright: Bradley Hardy 2015
category: Game
build-type: Simple
cabal-version: >=1.10
executable robo-demo
main-is: Main.hs
other-modules: WallHugger, ExampleBot, Crazy, BulletTester
build-depends: base >=4.6 && <5
, robo-monad
hs-source-dirs: demo
default-language: Haskell2010
other-extensions: TemplateHaskell, GeneralizedNewtypeDeriving
ghc-options: -O2
-threaded
-rtsopts
"-with-rtsopts=-N4"
library
exposed-modules:
Game.Robo,
Game.Robo.Maths,
Game.Robo.Extra,
Game.Robo.PID,
Game.Robo.PID.Class,
Game.Robo.PID.Lensed
other-modules:
Game.Robo.Core.Types.Maths,
Game.Robo.Core.Types,
Game.Robo.Core.Many.List,
Game.Robo.Core.Many.Vector,
Game.Robo.Core.Lenses,
Game.Robo.Core.Collision,
Game.Robo.Core.Rules,
Game.Robo.Core.Input,
Game.Robo.Core,
Game.Robo.Core.World,
Game.Robo.Core.Bot,
Game.Robo.Render.World,
Game.Robo.Render.Bot,
Game.Robo.Render
build-depends: GLFW-b
, GPipe
, GPipe-GLFW >= 1.3
, MonadRandom
, array
, base >= 4.8 && <5
, containers >= 0.5 && < 0.6
, deepseq >= 1.4
, exception-transformers >= 0.4
, free
, linear
, microlens-platform
, mtl
, random
, time >= 1.5
, transformers >= 0.4.2.0 && < 0.5
, vector
, pipes
, pipes-group
, pipes-concurrency
, async
hs-source-dirs: src
default-language: Haskell2010
default-extensions: FlexibleContexts, RecordWildCards
other-extensions: TemplateHaskell, GeneralizedNewtypeDeriving
ghc-options:
-O2
-threaded
-funbox-strict-fields
-Wall