-
Notifications
You must be signed in to change notification settings - Fork 2
/
implicitpipe.cabal
59 lines (56 loc) · 2.01 KB
/
implicitpipe.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
58
59
name: implicitpipe
version: 0.1.0.0
synopsis: OpenGL (GPipe) based viewer for ImplicitCAD
cabal-version: >=1.10
build-type: Simple
author: Richard Marko
copyright: 2020 Richard Marko
maintainer: srk@48.io
category: Graphics
license: MIT
library
hs-source-dirs: src
ghc-options: -O2 -Wall
build-depends:
base
, async
, containers
, data-default
, directory
, filepath
, fsnotify
, GPipe >= 2.2
, GPipe-GLFW >= 1.4
, GLFW-b
, hint
, implicit >= 0.4
, linear
, optparse-applicative
, stm
, transformers
, time
default-language: Haskell2010
exposed-modules: Graphics.Implicit.Export.GL
, Graphics.Implicit.Viewer
, Graphics.Implicit.Viewer.Config
, Graphics.Implicit.Viewer.Demos
, Graphics.Implicit.Viewer.Loaders
, Graphics.Implicit.Viewer.Shaders
, Graphics.Implicit.Viewer.Types
, Graphics.Implicit.Viewer.Util
executable implicitview
hs-source-dirs: app
main-is: Main.hs
build-depends:
base
, implicitpipe
ghc-options: -O2 -Wall -threaded -Wno-missing-signatures -rtsopts "-with-rtsopts -N -qg"
default-language: Haskell2010
executable implicitanim
hs-source-dirs: app
main-is: Animate.hs
build-depends:
base
, implicitpipe
ghc-options: -O2 -Wall -threaded -Wno-missing-signatures -rtsopts "-with-rtsopts -N -qg"
default-language: Haskell2010