-
Notifications
You must be signed in to change notification settings - Fork 0
/
tonganoxie.cabal
53 lines (46 loc) · 1.65 KB
/
tonganoxie.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
name: tonganoxie
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Andy Gill
maintainer: [email protected]
-- copyright:
category: Graphics
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
Exposed-modules: Linear.Quaternion.Utils,
Graphics.Tonganoxie.Material,
Graphics.Tonganoxie.Object,
Graphics.Tonganoxie.Normals,
Graphics.Tonganoxie.Shapes,
Graphics.Tonganoxie.Surface,
Graphics.Tonganoxie.Tessellation,
Graphics.Tonganoxie.Types
default-language: Haskell2010
build-depends: base >= 4.8
, containers >= 0.5 && < 0.6
, filepath >= 1.4
, linear >= 1.20.5
, text >= 1.2
, vector >= 0.11
, wavefront >= 0.7
Hs-Source-Dirs: src
test-suite tonganoxie-utils-tests
type: exitcode-stdio-1.0
build-depends: base >= 4.8
, linear >= 1.20.5
, tonganoxie == 0.1.0.0
, QuickCheck
, text >= 1.2
, vector >= 0.11
default-language: Haskell2010
main-is: Utils.hs
hs-source-dirs: tests
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/ku-fpg/tonganoxie.git