summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCsaba Hruska <csaba.hruska@gmail.com>2016-05-11 14:39:34 +0200
committerCsaba Hruska <csaba.hruska@gmail.com>2016-05-11 14:39:34 +0200
commit7f48d5e7dc0e02dc0da20c0ae3d0af9c6e041848 (patch)
treefd7d9ccf2b3fd84cad92fe4399f11ce4970ea57c
parent7742955288fd71d93a8c6a4743be50ae95b59274 (diff)
bump OpenGLRaw version constraint
-rw-r--r--lambdacube-gl.cabal20
1 files changed, 10 insertions, 10 deletions
diff --git a/lambdacube-gl.cabal b/lambdacube-gl.cabal
index 66d0852..9a2e16a 100644
--- a/lambdacube-gl.cabal
+++ b/lambdacube-gl.cabal
@@ -1,5 +1,5 @@
1name: lambdacube-gl 1name: lambdacube-gl
2version: 0.5.0.4 2version: 0.5.0.5
3synopsis: OpenGL 3.3 Core Profile backend for LambdaCube 3D 3synopsis: OpenGL 3.3 Core Profile backend for LambdaCube 3D
4description: OpenGL 3.3 Core Profile backend for LambdaCube 3D 4description: OpenGL 3.3 Core Profile backend for LambdaCube 3D
5homepage: http://lambdacube3d.com 5homepage: http://lambdacube3d.com
@@ -50,12 +50,17 @@ library
50 vector >=0.11 && <0.12, 50 vector >=0.11 && <0.12,
51 vector-algorithms >=0.7 && <0.8, 51 vector-algorithms >=0.7 && <0.8,
52 JuicyPixels >=3.2.7 && <3.3, 52 JuicyPixels >=3.2.7 && <3.3,
53 OpenGLRaw >=3.1 && <3.2, 53 OpenGLRaw >=3.1 && <4,
54 lambdacube-ir == 0.3.* 54 lambdacube-ir == 0.3.*
55 hs-source-dirs: src 55 hs-source-dirs: src
56 default-language: Haskell2010 56 default-language: Haskell2010
57 57
58executable lambdacube-gl-hello 58executable lambdacube-gl-hello
59 if flag(example)
60 Buildable: True
61 else
62 Buildable: False
63
59 hs-source-dirs: examples 64 hs-source-dirs: examples
60 main-is: Hello.hs 65 main-is: Hello.hs
61 default-language: Haskell2010 66 default-language: Haskell2010
@@ -72,12 +77,12 @@ executable lambdacube-gl-hello
72 lambdacube-gl, 77 lambdacube-gl,
73 lambdacube-ir == 0.3.* 78 lambdacube-ir == 0.3.*
74 79
75 if flag(example) 80executable lambdacube-gl-test-client
81 if flag(testclient)
76 Buildable: True 82 Buildable: True
77 else 83 else
78 Buildable: False 84 Buildable: False
79 85
80executable lambdacube-gl-test-client
81 hs-source-dirs: testclient 86 hs-source-dirs: testclient
82 main-is: client.hs 87 main-is: client.hs
83 default-language: Haskell2010 88 default-language: Haskell2010
@@ -98,12 +103,7 @@ executable lambdacube-gl-test-client
98 aeson >= 0.9 && <1, 103 aeson >= 0.9 && <1,
99 websockets >= 0.9 && <1, 104 websockets >= 0.9 && <1,
100 network >= 2.6 && <2.7, 105 network >= 2.6 && <2.7,
101 OpenGLRaw >=3.1 && <3.2, 106 OpenGLRaw >=3.1 && <4,
102 GLFW-b >= 1.4 && <1.5, 107 GLFW-b >= 1.4 && <1.5,
103 lambdacube-gl, 108 lambdacube-gl,
104 lambdacube-ir == 0.3.* 109 lambdacube-ir == 0.3.*
105
106 if flag(testclient)
107 Buildable: True
108 else
109 Buildable: False