forked from bsl/GLFW-b-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGLFW-b-demo.cabal
More file actions
50 lines (36 loc) · 1003 Bytes
/
GLFW-b-demo.cabal
File metadata and controls
50 lines (36 loc) · 1003 Bytes
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
name: GLFW-b-demo
version: 0.1
category: Graphics
synopsis: GLFW-b test\/example\/demo
description: GLFW-b test\/example\/demo.
.
Run 'GLFW-b-demo' and use a joystick or cursor keys to rotate an
RGB cube. /Please help me think of more interesting stuff to do/
/in here./
author: Brian Lewis <brian@lorf.org>
maintainer: Brian Lewis <brian@lorf.org>
license: BSD3
license-file: LICENSE
-- -- -- -- -- -- -- -- -- --
cabal-version: >= 1.6
build-type: Simple
-- -- -- -- -- -- -- -- -- --
extra-source-files:
src/Cube.hs
src/Display.hs
executable GLFW-b-demo
main-is: Main.hs
hs-source-dirs:
src
build-depends:
GLFW-b == 0.*,
OpenGL == 2.4.*,
GLURaw == 1.1.*,
base == 4.*
ghc-options: -Wall -O2
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
-- -- -- -- -- -- -- -- -- --
source-repository head
type: git
location: git://github.com/bsl/GLFW-b-demo.git