-
Notifications
You must be signed in to change notification settings - Fork 0
/
ray-tracer.cabal
executable file
·80 lines (73 loc) · 2.7 KB
/
ray-tracer.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
75
76
77
78
79
80
-- Initial ray-tracer.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: ray-tracer
version: 0.1.0.0
synopsis: A simple ray tracing graphics program.
homepage: jrraymond.github.io
license: GPL-3
license-file: LICENSE
author: Justin Raymond, Brian Gapinksi
maintainer: [email protected], [email protected]
category: Graphics
build-type: Simple
cabal-version: >=1.10
Flag Eventlog
Description: Enable eventlog
Default: False
Flag Profiling
Description: Enable profiling
Default: False
Flag Dump
Description: Dump core info
Default: False
executable ray-tracer
main-is: Main.hs
build-depends: base >= 4.5 && < 5
, process
, parallel
, deepseq
, optparse-applicative
, transformers
, mtl
, containers
, primitive
, parsec
, random
, random-shuffle
, mersenne-random-pure64
, vector
, vector-th-unbox
, criterion
, distributed-process
hs-source-dirs: src
default-language: Haskell2010
GHC-Options: -Wall -O3 -rtsopts -threaded -feager-blackholing -funbox-strict-fields
if flag(Eventlog)
GHC-Options: -O3 -rtsopts -funbox-strict-fields -threaded -eventlog -Wall
if flag(Profiling)
ghc-prof-options: -O3 -auto-all
GHC-Options: -O3 -rtsopts -funbox-strict-fields -threaded -fprof-auto -Wall
if flag(Dump)
GHC-options: -O3 -funbox-strict-fields -Wall -ddump-simpl -dsuppress-module-prefixes -dsuppress-uniques -ddump-to-file
--benchmark bench
-- Default-Language: Haskell2010
-- Type: exitcode-stdio-1.0
-- HS-Source-Dirs: benchmarks, src
-- Main-Is: Main.hs
-- GHC-Options: -O3 -Wall -rtsopts -funbox-strict-fields
-- build-depends: base >= 4.5 && < 5
-- , process
-- , parallel
-- , deepseq
-- , optparse-applicative
-- , transformers
-- , mtl
-- , containers
-- , primitive
-- , parsec
-- , random
-- , random-shuffle
-- , mersenne-random-pure64
-- , vector
-- , vector-th-unbox
-- , criterion