-
Notifications
You must be signed in to change notification settings - Fork 0
/
gl.cabal
57 lines (52 loc) · 1.76 KB
/
gl.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
-- Initial gl.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: gl
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
license-file: LICENSE
-- author:
maintainer: Eric Nething
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable gl
main-is: Main.lhs
-- hs-source-dirs:
default-language: Haskell2010
-- other-modules: Shaders.hs
other-extensions: StandaloneDeriving
build-depends: base >=4.6 && <4.7
, containers >=0.5 && <0.6
, SDL2
, OpenGL >= 2.9
, vector
, bytestring
executable gl1
main-is: 1-SDL-Setup/Main.lhs
default-language: Haskell2010
other-extensions: StandaloneDeriving
build-depends: base >=4.6 && <4.7
, containers >=0.5 && <0.6
, SDL2
, OpenGL >= 2.9
executable gl2
main-is: 2-OpenGL-Context-Creation/Main.lhs
default-language: Haskell2010
other-extensions: StandaloneDeriving
build-depends: base >=4.6 && <4.7
, containers >=0.5 && <0.6
, SDL2
, OpenGL >= 2.9
executable gl3
main-is: 3-Rendering-with-OpenGL/Main.lhs
default-language: Haskell2010
other-extensions: StandaloneDeriving
build-depends: base >=4.6 && <4.7
, containers >=0.5 && <0.6
, SDL2
, OpenGL >= 2.9
, bytestring