-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangle.cabal
36 lines (31 loc) · 985 Bytes
/
angle.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
name: angle
version: 0.0.0.1
description: Angle type
license: BSD3
license-file: LICENSE
copyright: J.D. Marble
maintainer: [email protected]
cabal-version: >= 1.10
build-type: Simple
Library
hs-source-dirs: src
exposed-modules: Data.Angle
build-depends: base ==4.*
, random ==1.0.*
, spatialIndex ==0.0.*
, vector-space ==0.7.*
ghc-options: -Wall
default-language: Haskell98
Test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: TestMain.hs
default-language: Haskell98
build-depends: base ==4.*
, random ==1.0.*
, spatialIndex ==0.0.*
, test-framework ==0.3.*
, test-framework-th ==0.1.*
, test-framework-quickcheck2 >=0.2.9 && <0.3
, QuickCheck ==2.4.*
, angle ==0.0.*