-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathray-tracers.cabal
45 lines (43 loc) · 1.4 KB
/
ray-tracers.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
cabal-version: >=1.10
name: ray-tracers
version: 0.2.0.0
synopsis:
description:
bug-reports:
license:
license-file: LICENSE
author: Sarfaraz Nawaz
maintainer: [email protected]
copyright:
category:
build-type: Simple
extra-source-files:
executable ray-tracers
main-is: Main.hs
other-modules: Image
Colors
Vec
Utils
Ray
Hittable
Camera
Samplings
Scenes
build-depends: base >=4.12 && <4.13,
random >=1.2,
deepseq >= 1.4.4.0,
parallel >= 3.2.2.0,
numeric-limits >= 0.1.0,
directory >= 1.3,
array >= 0.5,
time >= 1.1,
pretty-terminal >= 0.1.0
hs-source-dirs: src
ghc-options: -O2
-rtsopts -threaded
-fllvm -optlo-O3 -optl-ffast-math
-fexcess-precision -funfolding-use-threshold1000
-Wall
-Werror=missing-import-lists -Werror=missing-export-lists
-Wno-type-defaults
default-language: Haskell2010