-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRepa-trace.cabal
32 lines (26 loc) · 1.11 KB
/
Repa-trace.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
-- Initial Repa-trace.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: Repa-trace
version: 0.1.0.0
synopsis: A ray tracer extension to repa
-- description:
homepage: -
-- license:
license-file: LICENSE
author: axhav
maintainer: [email protected]
-- copyright:
category: Graphics
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Raytracer
other-modules: Vector ,World,Ray
build-depends: base >= 4.7 && < 4.8, repa >=3.3 && <3.4, mtl >=2.1 && <2.2, repa-io >=3.3 && <3.4, random >=1.0 && <1.1, time >=1.4 && <1.5
executable Repa-trace
main-is: Preview.hs
other-extensions: TypeOperators
build-depends: base >=4.7 && <4.8, repa >=3.3 && <3.4, mtl >=2.1 && <2.2, repa-io >=3.3 && <3.4, random >=1.0 && <1.1, time >=1.4 && <1.5, Repa-trace, repa-algorithms
hs-source-dirs: executable
default-language: Haskell2010