-
Notifications
You must be signed in to change notification settings - Fork 12
/
grid.cabal
82 lines (78 loc) · 2.28 KB
/
grid.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
cabal-version: 2.4
name: grid
version: 8.0.2
synopsis: Tools for working with regular grids (graphs, lattices).
description:
Please see the README on GitHub at <https://github.com/mhwombat/grid#readme>
homepage: https://github.com/mhwombat/grid
bug-reports: https://github.com/mhwombat/grid/issues
license: BSD-3-Clause
license-file: LICENSE
author: Amy de Buitléir
maintainer: [email protected]
copyright: 2010-2022 Amy de Buitléir
category: Math
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/mhwombat/grid
common common-stuff
default-language: Haskell2010
default-extensions: ImportQualifiedPost
library
import: common-stuff
hs-source-dirs: src
exposed-modules:
Math.Geometry.Grid
Math.Geometry.Grid.Hexagonal
Math.Geometry.Grid.Hexagonal2
Math.Geometry.Grid.HexagonalInternal
Math.Geometry.Grid.HexagonalInternal2
Math.Geometry.Grid.Octagonal
Math.Geometry.Grid.OctagonalInternal
Math.Geometry.Grid.Square
Math.Geometry.Grid.SquareInternal
Math.Geometry.Grid.Triangular
Math.Geometry.Grid.TriangularInternal
Math.Geometry.GridInternal
Math.Geometry.GridMap
Math.Geometry.GridMap.Lazy
other-modules: Paths_grid
autogen-modules: Paths_grid
ghc-options: -Wall -Wunused-packages
build-depends:
, base >=4.8 && <5
, containers >= 0.6.4 && < 0.7
other-extensions:
CPP
ConstrainedClassMethods
DeriveGeneric
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
TypeFamilies
TypeSynonymInstances
UndecidableInstances
test-suite grid-tests
import: common-stuff
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
Math.Geometry.Grid.Hexagonal2QC
Math.Geometry.Grid.HexagonalQC
Math.Geometry.Grid.OctagonalQC
Math.Geometry.Grid.SquareQC
Math.Geometry.Grid.TriangularQC
Math.Geometry.GridMap.LazyQC
Math.Geometry.GridQC
ghc-options:
-threaded -rtsopts -with-rtsopts=-N -Wall -Wunused-packages
build-depends:
, base
, grid
, QuickCheck
, test-framework
, test-framework-quickcheck2