-
Notifications
You must be signed in to change notification settings - Fork 0
/
Green.cabal
39 lines (36 loc) · 1.38 KB
/
Green.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
name: Green
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
synopsis: Adventures in Haskell
-- description:
homepage: https://github.com/Hypoon/Green
-- license:
-- license-file: LICENSE
author: Hypoon
maintainer: [email protected]
-- copyright:
category: Game
build-type: Simple
-- Extra files to be distributed with the package, such as examples or a README.
-- extra-source-files:
cabal-version: >=1.10
executable green
main-is: Client.hs
ghc-options: -threaded -with-rtsopts=-N
build-depends: base >=4.8 && <4.9 , mtl , time , network
hs-source-dirs: src
default-language: Haskell2010
executable greenss
main-is: StateServer.hs
ghc-options: -threaded -with-rtsopts=-N
build-depends: base >=4.8 && <4.9 , network , reflex , async , transformers , mtl , dependent-sum
hs-source-dirs: src
default-language: Haskell2010
executable greencs
main-is: CommServer.hs
ghc-options: -threaded -with-rtsopts=-N
build-depends: base >=4.8 && <4.9
hs-source-dirs: src
default-language: Haskell2010