diff options
author | Csaba Hruska <csaba.hruska@gmail.com> | 2016-02-04 14:34:47 +0100 |
---|---|---|
committer | Csaba Hruska <csaba.hruska@gmail.com> | 2016-02-04 14:34:47 +0100 |
commit | 580d3fb560f31e22d3040fe80642fbaea1e3a4d4 (patch) | |
tree | 8252fe57e7fd4f0b4b7a3b1f29b7ade479f52abc /examples/lambdacube-gl-examples.cabal | |
parent | c2bc1b9b4b9d04550178b80de381ed33b7f0f7c9 (diff) |
add cabal file for examples
Diffstat (limited to 'examples/lambdacube-gl-examples.cabal')
-rw-r--r-- | examples/lambdacube-gl-examples.cabal | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/examples/lambdacube-gl-examples.cabal b/examples/lambdacube-gl-examples.cabal new file mode 100644 index 0000000..dc5f998 --- /dev/null +++ b/examples/lambdacube-gl-examples.cabal | |||
@@ -0,0 +1,43 @@ | |||
1 | name: lambdacube-gl-examples | ||
2 | version: 0.1.0.0 | ||
3 | synopsis: Basic example for LambdaCube 3D Haskell OpenGL backend | ||
4 | -- description: | ||
5 | homepage: http://lambdacube3d.com/getting-started | ||
6 | license: BSD3 | ||
7 | license-file: LICENSE | ||
8 | author: Csaba Hruska | ||
9 | maintainer: csaba.hruska@gmail.com | ||
10 | -- copyright: | ||
11 | category: Graphics | ||
12 | build-type: Simple | ||
13 | extra-source-files: hello.lc | ||
14 | hello.json | ||
15 | cabal-version: >=1.10 | ||
16 | |||
17 | executable hello-gl | ||
18 | main-is: Hello.hs | ||
19 | build-depends: base >=4.8 && <4.9, | ||
20 | containers >=0.5 && <0.6, | ||
21 | vector >=0.11 && <0.12, | ||
22 | JuicyPixels >=3.2 && <3.3, | ||
23 | aeson >=0.9 && <0.11, | ||
24 | bytestring >=0.10 && <0.11, | ||
25 | GLFW-b >=1.4 && <1.5, | ||
26 | lambdacube-gl >=0.4 && <0.5 | ||
27 | -- hs-source-dirs: | ||
28 | default-language: Haskell2010 | ||
29 | |||
30 | executable hello-gl-embedded | ||
31 | main-is: HelloEmbedded.hs | ||
32 | build-depends: base >=4.8 && <4.9, | ||
33 | containers >=0.5 && <0.6, | ||
34 | vector >=0.11 && <0.12, | ||
35 | JuicyPixels >=3.2 && <3.3, | ||
36 | aeson >=0.9 && <0.11, | ||
37 | bytestring >=0.10 && <0.11, | ||
38 | GLFW-b >=1.4 && <1.5, | ||
39 | lambdacube-gl >=0.4 && <0.5, | ||
40 | lambdacube-compiler >=0.4 && <0.5 | ||
41 | -- hs-source-dirs: | ||
42 | default-language: Haskell2010 | ||
43 | |||