-
Notifications
You must be signed in to change notification settings - Fork 0
/
hask-hex.cabal
61 lines (53 loc) · 1.61 KB
/
hask-hex.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
cabal-version: >=1.10
name: hask-hex
version: 0.1.0.0
synopsis: fun
-- description:
homepage: hex.gran.world
-- bug-reports:
license: GPL-3
-- license-file: LICENSE
author: kjetil midtlie
maintainer: [email protected]
-- copyright:
category: Game
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules: InfiniteHexGrid
--FiniteHexGrid
VectorGridPattern
Materials
Utils
build-depends: base,
random,
vector
hs-source-dirs: src
default-language: Haskell2010
executable term-inf
main-is: TermInf.hs
build-depends: base,
text,
hask-hex,
terminal-size
executable hask-hex-simplex
main-is: SimpleUI.hs
build-depends: base,
hask-hex,
random,
containers,
vector,
ansi-terminal,
terminal-size
default-language: Haskell2010
--executable tui-hask-hex
-- main-is: Tui.hs
-- build-depends: base,
-- hask-hex,
-- brick,
-- vty,
-- random,
-- containers
-- ghc-options: -threaded -rtsopts -with-rtsopts=-N
-- hs-source-dirs:
default-language: Haskell2010