forked from bsl/GLFW-b
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GLFW-b.cabal
90 lines (69 loc) · 2.26 KB
/
GLFW-b.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
name: GLFW-b
version: 3.3.2.1
category: Graphics
author: Brian Lewis <[email protected]>
maintainer: Brian Lewis <[email protected]>
, Schell Scivally <[email protected]>
, Pavel Krajcevski <[email protected]>
license: BSD3
license-file: LICENSE
synopsis: Bindings to GLFW OpenGL library
description:
Bindings to GLFW (<http://www.glfw.org/>), an open source, multi-platform
library for creating windows with OpenGL contexts and managing input and
events.
.
GLFW-b depends on bindings-GLFW
(<http://hackage.haskell.org/package/bindings-GLFW>), which, as of the time
of this writing, binds to GLFW 3.3.0, released 2019-04-15
(<http://www.glfw.org/Version-3.3.0-released.html>
<http://www.glfw.org/changelog.html>).
.
If you've used GLFW < 3 before, you should read the transition guide
(<http://www.glfw.org/docs/3.0/moving.html>).
cabal-version: >= 1.10
build-type: Simple
--------------------------------------------------------------------------------
extra-source-files:
README.md
TODO
--------------------------------------------------------------------------------
library
default-language: Haskell2010
ghc-options: -Wall
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
exposed-modules:
Graphics.UI.GLFW
Graphics.UI.GLFW.C
other-modules:
Graphics.UI.GLFW.Types
build-depends:
base < 5
, deepseq >= 1.1.0.0
, array >= 0.5.3.0
, bindings-GLFW >= 3.3.2.1
--------------------------------------------------------------------------------
test-suite main
default-language: Haskell2010
ghc-options: -Wall
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules:
Graphics.UI.GLFW
Graphics.UI.GLFW.Types
build-depends:
GLFW-b
, HUnit >= 1.3 && < 1.7
, base < 5
, array >= 0.5.3.0
, bindings-GLFW >= 3.3.0.0
, deepseq >= 1.1.0.0
, test-framework == 0.8.*
, test-framework-hunit == 0.3.*
--------------------------------------------------------------------------------
source-repository head
type: git
location: git://github.com/bsl/GLFW-b.git