-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLaneWars.cabal
40 lines (34 loc) · 1.2 KB
/
LaneWars.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
name: LaneWars
version: 0.1.0.0
synopsis: A MOBA written using Haskell, Yampa, and SDL
homepage: https://github.com/Mattiemus/LaneWars
license: MIT
license-file: LICENSE
author: Matthew Wade
maintainer: [email protected]
category: Game
build-type: Simple
cabal-version: >=1.8
executable Client
main-is: Client.hs
build-depends: base ==4.6.*,
Yampa ==0.9.*,
monad-loops ==0.4.*,
cereal ==0.4.*,
network ==2.4.*,
SDL ==0.6.*,
bytestring ==0.10.*,
ieee754 ==0.7.*,
safe ==0.3.*
executable Server
main-is: Server.hs
build-depends: base ==4.6.*,
Yampa ==0.9.*,
monad-loops ==0.4.*,
cereal ==0.4.*,
time ==1.4.*,
network ==2.4.*,
SDL ==0.6.*,
bytestring ==0.10.*,
ieee754 ==0.7.*,
safe ==0.3.*