-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnetwire-graph-loader.cabal
111 lines (102 loc) · 3.54 KB
/
netwire-graph-loader.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: netwire-graph-loader
version: 0.4.0
synopsis: graph (Vs, Es) rendering w/ loading screens walkthrough
description: Programs building up to loading a graph from a file while displaying a loading screen, then rendering it. Netwire/GLFW/VinylGL/netwire-input/STM
license: OtherLicense
license-file: LICENSE.txt
author: Rand Kleisli
maintainer: runKleisli@openmailbox.org
category: Game
build-type: Simple
extra-source-files: README.md
data-files: etc/*.frag, etc/*.vert
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/runKleisli/netwire-graph-loader
executable GraphLoaderCtrl
main-is: CtrlExample.hs
other-modules: CursorProgram
hs-source-dirs: src
ghc-options: -Wall -rtsopts -O3 -threaded
build-depends: base > 4.5 && < 5,
lens >= 3.9,
vinyl >= 0.4,
netwire-input,
netwire-input-glfw >=0.0.5 && <= 0.0.6,
OpenGL >= 2.9.2,
GLFW-b >= 1.4,
linear >= 1.1,
GLUtil >= 0.7,
vinyl-gl >= 0.2,
transformers,
array,
bytestring,
mtl >= 2.2.1,
containers >= 0.5,
directory >= 1.2,
filepath ==1.3.*
if impl(ghc >= 7.10.1)
build-depends: netwire >= 5.0.0
else
build-depends: netwire == 5.0.0 || > 5.0.2
default-language: Haskell2010
executable GraphLoaderProgressReporting
main-is: ReportingProgressExample.hs
hs-source-dirs: src
ghc-options: -Wall -rtsopts -O3 -threaded
build-depends: base > 4.5 && < 5,
transformers,
array,
bytestring,
stm,
mtl >= 2.2.1,
containers >= 0.5,
directory >= 1.2,
filepath ==1.3.*
default-language: Haskell2010
executable GraphLoaderLoadReporting
main-is: ReportingLoadExample.hs
hs-source-dirs: src
ghc-options: -Wall -rtsopts -O3 -threaded
build-depends: base > 4.5 && < 5,
deepseq >= 1.1.0.0,
transformers,
array,
bytestring,
stm,
mtl >= 2.2.1,
containers >= 0.5,
directory >= 1.2,
filepath ==1.3.*
default-language: Haskell2010
executable GraphLoadingScr
main-is: GraphLoadingScr.hs
other-modules: CursorProgram, GraphProgram
hs-source-dirs: src
ghc-options: -Wall -rtsopts -O3 -threaded
build-depends: base > 4.5 && < 5,
deepseq >= 1.1.0.0,
parallel,
lens >= 3.9,
vinyl >= 0.4,
netwire-input,
netwire-input-glfw >=0.0.5 && <= 0.0.6,
OpenGL >= 2.9.2,
GLFW-b >= 1.4,
linear >= 1.1,
GLUtil >= 0.7,
vinyl-gl >= 0.2,
transformers,
array,
bytestring,
stm,
mtl >= 2.2.1,
containers >= 0.5,
directory >= 1.2,
filepath ==1.3.*
if impl(ghc >= 7.10.1)
build-depends: netwire >= 5.0.0
else
build-depends: netwire == 5.0.0 || > 5.0.2
default-language: Haskell2010