-
Notifications
You must be signed in to change notification settings - Fork 0
/
yampa-glut.cabal
61 lines (51 loc) · 1.58 KB
/
yampa-glut.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
Name: yampa-glut
Version: 0.1.1.1
Cabal-Version: >= 1.8
Synopsis: Connects Yampa and GLUT
Category: FRP, graphics
Description:
This package contains an adapter that connects OpenGL/GLUT to the
FRP library \"Yampa\".
.
© 2012 by Nikolay Orlyuk; GPL-3 license.
Author: Nikolay Orlyuk
Maintainer: virkony@gmail.com
Homepage: https://github.com/ony/yampa-glut
Copyright: (c) 2012 by Nikolay Orlyuk
License: GPL-3
License-File: COPYING
Stability: experimental
build-type: Simple
flag Yampa-core
Default: True
Manual: False
Description: Use Yampa-core instead of Yampa
flag examples
Default: False
Manual: True
Description: Build example executables too
Source-Repository head
type: git
location: https://github.com/ony/yampa-glut.git
Library
Extensions:
Build-Depends: base<5, OpenGL, GLUT, vector-space, newtype
if flag(Yampa-core)
Build-Depends: Yampa-core >= 0.1.0 && < 0.3
else
Build-Depends: Yampa >= 0.9.3 && < 0.11
Exposed-Modules: FRP.Yampa.GLUT.Adapter
FRP.Yampa.GLUT.UI
Other-Modules: FRP.Yampa.GLUT.InternalUI
ghc-options: -Wall
executable example
Main-Is: example.lhs
Build-Depends:
base<5, newtype, GLUT, OpenGL, vector-space, vector-space-opengl,
yampa-glut
if flag(Yampa-core)
Build-Depends: Yampa-core >= 0.1.0 && <0.3
else
Build-Depends: Yampa >= 0.9.3 && <0.11
if !flag(examples)
Buildable: False