-
Notifications
You must be signed in to change notification settings - Fork 0
/
raytracinginoneweekend.cabal
74 lines (71 loc) · 2.47 KB
/
raytracinginoneweekend.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: raytracinginoneweekend
version: 0.1.0.0
synopsis: Ray Tracing in One Weekend
license: BSD3
license-file: LICENSE
author: Timo von Holtz
maintainer: [email protected]
copyright: 2016 Timo von Holtz
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: lib
ghc-options: -O2 -Wall
build-depends: base
, deepseq
, JuicyPixels
, lens
, linear
, mwc-random
, primitive
, resource-pool
, transformers
, vector
, vector-algorithms
, wavefront
exposed-modules: RaytracingBook.Ray
, RaytracingBook.BVH
, RaytracingBook.Camera
, RaytracingBook.Hitable
, RaytracingBook.Import.Obj
, RaytracingBook.Monad
, RaytracingBook.Sphere
, RaytracingBook.Texture
, RaytracingBook.Triangle
default-language: Haskell2010
executable rayer
hs-source-dirs: src
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2 -Wall
build-depends: base
, JuicyPixels
, async-pool
, friday
, friday-devil
, friday-juicypixels
, ieee754
, lens
, linear
, mwc-random
, optparse-applicative
, raytracinginoneweekend
, stm
, transformers
, vector
, wavefront
default-language: Haskell2010
executable rayer-benchmarks
hs-source-dirs: src
main-is: Benchmarks.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2 -Wall
build-depends: base
, Xorshift128Plus
, criterion
, lens
, linear
, mersenne-random
, mersenne-random-pure64
, mwc-random
, raytracinginoneweekend
, vector
default-language: Haskell2010