-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDaumenkino.cabal
57 lines (46 loc) · 2.03 KB
/
Daumenkino.cabal
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Daumenkino
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.0.0.0
synopsis: Tidal interface to graphical display
homepage: https://github.com/lennart/Daumenkino
license-file: LICENSE
author: Lennart Melzer
maintainer: [email protected]
-- A copyright notice.
-- copyright:
category: Graphics
build-type: Simple
extra-source-files: README.md
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10
executable Daumenkino
main-is: Main.hs
other-moduleS:
Gear
build-depends: base >=4.7 && <5, tidal >= 0.9 && <0.10, hosc,
containers, colour, GLFW-b, OpenGL, transformers, stm, pretty, mtl, time, bytestring,
linear
default-language: Haskell2010
library
-- Modules exported by the library.
exposed-modules: Graphics.Daumenkino.Context
Graphics.Daumenkino.Colors
Graphics.Daumenkino.XKCD
Graphics.Daumenkino.Prim
Graphics.Daumenkino.Pattern
Graphics.Daumenkino.Strategies
Graphics.Daumenkino.Space
Graphics.Daumenkino.Tidal
-- Modules included in this library but not exported.
other-modules:
Graphics.Daumenkino.Params
Graphics.Daumenkino.Shader
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base >=4.7 && <5, tidal >=0.9 && <0.10, hosc, containers, colour, GLFW-b, OpenGL, time
default-language: Haskell2010