-
Notifications
You must be signed in to change notification settings - Fork 1
/
luminosity.cabal
27 lines (25 loc) · 1.06 KB
/
luminosity.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
Name: luminosity
Version: 1.0
Cabal-Version: >= 1.8
Synopsis: A simple and elegant ray tracer
-- Description:
Author: Mitchell Kember
Maintainer: mk12360@gmail.com
-- Homepage: mitchellkember.com/luminosity
Copyright: Copyright © 2012 Mitchell Kember
License: MIT
License-file: LICENSE.md
Category: Graphics
Build-Type: Simple
Extra-Source-Files: README.md
Source-Repository head
Type: git
Location: git://github.com/mk12/luminosity.git
Executable luminosity
Main-is: Main.hs
Other-Modules: Luminosity.Colour Luminosity.Export Luminosity.Intersect Luminosity.Misc Luminosity.Parse Luminosity.Render Luminosity.Trace Luminosity.Vector
hs-Source-Dirs: src
Build-Depends: base == 4.5.*, filepath, containers, bytestring, json, blaze-builder
ghc-options: -O2 -fexcess-precision -funbox-strict-fields -Wall -fno-warn-type-defaults
-- -threaded -feager-blackholing -rtsopts -with-rtsopts=-N
ghc-prof-options: -auto-all -caf-all