summaryrefslogtreecommitdiff
path: root/lambdacube-gl.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'lambdacube-gl.cabal')
-rw-r--r--lambdacube-gl.cabal39
1 files changed, 39 insertions, 0 deletions
diff --git a/lambdacube-gl.cabal b/lambdacube-gl.cabal
new file mode 100644
index 0000000..a899a27
--- /dev/null
+++ b/lambdacube-gl.cabal
@@ -0,0 +1,39 @@
1name: lambdacube-gl
2version: 0.3.0.0
3-- synopsis:
4-- description:
5homepage: lambdacube3d.com
6license: BSD3
7license-file: LICENSE
8author: Csaba Hruska, Peter Divianszky
9maintainer: csaba.hruska@gmail.com
10-- copyright:
11category: Graphics
12build-type: Simple
13-- extra-source-files:
14cabal-version: >=1.10
15
16library
17 exposed-modules:
18 LambdaCube.GL
19 LambdaCube.GL.Backend
20 LambdaCube.GL.Data
21 LambdaCube.GL.Input
22 LambdaCube.GL.Mesh
23 LambdaCube.GL.Type
24 LambdaCube.GL.Util
25 -- other-modules:
26 -- other-extensions:
27 build-depends:
28 base >=4.7 && <4.9,
29 containers >=0.5 && <0.6,
30 mtl >=2.2 && <2.3,
31 bytestring >=0.10 && <0.11,
32 vector >=0.11 && <0.12,
33 vector-algorithms >=0.7 && <0.8,
34 binary >=0.7 && <0.8,
35 JuicyPixels >=3.2.6.4 && <3.3,
36 OpenGLRaw >=3.0 && <3.1,
37 lambdacube-ir
38 hs-source-dirs: src
39 default-language: Haskell2010