blob: fb05fb1c07369f69a5dfeb0d2cfbf8125ce36c1f (
plain)
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
|
-- Initial lambdacube-ir.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: lambdacube-ir
version: 0.3.1.0
synopsis: LambdaCube 3D intermediate representation of 3D graphics pipelines
description: LambdaCube 3D intermediate representation of 3D graphics pipelines
license: BSD3
license-file: LICENSE
author: Csaba Hruska
maintainer: csaba.hruska@gmail.com
-- copyright:
category: Graphics
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
extra-source-files: CHANGELOG.md
library
exposed-modules: LambdaCube.Linear
LambdaCube.IR
LambdaCube.Mesh
LambdaCube.PipelineSchema
LambdaCube.PipelineSchemaUtil
-- other-modules:
other-extensions: OverloadedStrings, RecordWildCards, DeriveFunctor
-- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository
build-depends: base >=4.9,
containers >=0.5,
vector >=0.12,
text >=1.2,
aeson >=1.1,
mtl >=2.2
hs-source-dirs: src
default-language: Haskell2010
|