summaryrefslogtreecommitdiff
path: root/lambdacube-ir.haskell/lambdacube-ir.cabal
diff options
context:
space:
mode:
authorCsaba Hruska <csaba.hruska@gmail.com>2016-01-29 15:27:53 +0100
committerCsaba Hruska <csaba.hruska@gmail.com>2016-01-29 15:27:53 +0100
commitfe9a7c6d0af59227ff34b098f2a5ba1359790ae8 (patch)
tree3bb7170620c4b914d8bc39127af1e4fb4627fab3 /lambdacube-ir.haskell/lambdacube-ir.cabal
parent0c885c5c6bfb69c543635fd08d697ce44f24642d (diff)
add Schema to IR module, also use namespace
Diffstat (limited to 'lambdacube-ir.haskell/lambdacube-ir.cabal')
-rw-r--r--lambdacube-ir.haskell/lambdacube-ir.cabal10
1 files changed, 7 insertions, 3 deletions
diff --git a/lambdacube-ir.haskell/lambdacube-ir.cabal b/lambdacube-ir.haskell/lambdacube-ir.cabal
index 1389a9c..4ff27ed 100644
--- a/lambdacube-ir.haskell/lambdacube-ir.cabal
+++ b/lambdacube-ir.haskell/lambdacube-ir.cabal
@@ -2,7 +2,7 @@
2-- documentation, see http://haskell.org/cabal/users-guide/ 2-- documentation, see http://haskell.org/cabal/users-guide/
3 3
4name: lambdacube-ir 4name: lambdacube-ir
5version: 0.1.0.0 5version: 0.2.0.0
6-- synopsis: 6-- synopsis:
7-- description: 7-- description:
8license: BSD3 8license: BSD3
@@ -16,10 +16,14 @@ build-type: Simple
16cabal-version: >=1.10 16cabal-version: >=1.10
17 17
18library 18library
19 exposed-modules: IR, Linear 19 exposed-modules: LambdaCube.Linear
20 LambdaCube.IR
21 LambdaCube.Mesh
22 LambdaCube.PipelineSchema
23 LambdaCube.PipelineSchemaUtil
20 -- other-modules: 24 -- other-modules:
21 other-extensions: OverloadedStrings, RecordWildCards, DeriveFunctor 25 other-extensions: OverloadedStrings, RecordWildCards, DeriveFunctor
22 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository 26 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository
23 build-depends: base >=4.8 && <4.9, containers >=0.5 && <0.6, vector >=0.11 && <0.12, text >=1.2 && <1.3, aeson >=0.9 && <0.11 27 build-depends: base >=4.8 && <4.9, containers >=0.5 && <0.6, vector >=0.11 && <0.12, text >=1.2 && <1.3, aeson >=0.9 && <0.11, mtl >=2.2 && <2.3
24 hs-source-dirs: src 28 hs-source-dirs: src
25 default-language: Haskell2010 29 default-language: Haskell2010