-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathspatial-math.cabal
63 lines (53 loc) · 1.88 KB
/
spatial-math.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
name: spatial-math
version: 0.5.0.1
synopsis: 3d math including quaternions/euler angles/dcms and utility functions
license: BSD3
license-file: LICENSE
author: Greg Horn
maintainer: [email protected]
copyright: Copyright (c) 2012-2019, Greg Horn
category: Math
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
changelog.txt
library
hs-source-dirs: src
exposed-modules: SpatialMath
SpatialMath.ArcTan2
SpatialMath.Euler
SpatialMath.Untyped
other-modules: SpatialMath.LibmFfi
build-depends: base >= 4 && < 5,
ghc-prim,
cereal,
binary,
serialise,
linear >= 1.17.1,
lens,
TypeCompose >= 0.9.11
default-language: Haskell2010
ghc-options: -Wall -Werror
source-repository head
type: git
location: git://github.com/ghorn/spatial-math.git
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
build-depends: base >= 4 && < 5,
doctest >= 0.8,
doctest-discover
default-language: Haskell2010
ghc-options: -threaded -Wall -Werror
hs-source-dirs: tests
test-suite unit-tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Tests.hs
default-language: Haskell2010
build-depends: base >=4.6 && < 5,
spatial-math,
QuickCheck >= 2,
test-framework,
test-framework-quickcheck2
ghc-options: -O2 -Wall -Werror