-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpipe-voxel.cabal
109 lines (104 loc) · 2.62 KB
/
gpipe-voxel.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
cabal-version: 3.8
name: gpipe-voxel
version: 0.1.0.0
tested-with: GHC == 9.8.2
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
license: MIT
author: Anton Gushcha
maintainer: [email protected]
extra-source-files: CHANGELOG.md
library
hs-source-dirs: src
exposed-modules:
Data.Voxel.Combine
Data.Voxel.Empty
Data.Voxel.Grid.Unbox
Data.Voxel.Grid.Unbox.Internal
Data.Voxel.Grid.Unbox.Mutable
Data.Voxel.Grid.Unbox.Mutable.Internal
Data.Voxel.Opaque
Data.Voxel.Side
Graphics.GPipe.Voxel
build-depends:
base >= 4.5 && < 5
, containers >= 0.5 && < 0.7
, linear >= 1.20 && < 2
, primitive >= 0.5 && < 0.10
, vector >= 0.10 && < 0.14
, exception-transformers
, GPipe
, GPipe-GLFW
default-language: Haskell2010
default-extensions:
BangPatterns
DeriveGeneric
DuplicateRecordFields
FlexibleContexts
FlexibleInstances
FunctionalDependencies
MultiParamTypeClasses
OverloadedRecordDot
OverloadedStrings
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeFamilies
TypeOperators
UndecidableInstances
UndecidableSuperClasses
executable gpipe-voxel-viewer
hs-source-dirs: app
main-is: Viewer.hs
build-depends:
base ^>=4.19
, exception-transformers
, GPipe
, GPipe-GLFW
, gpipe-voxel
default-language: Haskell2010
default-extensions:
DuplicateRecordFields
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
OverloadedRecordDot
RecordWildCards
ScopedTypeVariables
TypeFamilies
TypeOperators
UndecidableInstances
test-suite gpipe-voxel-test
hs-source-dirs: test
build-tool-depends: tasty-discover:tasty-discover
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Data.Voxel.Grid.Unbox.MutableTest
Data.Voxel.Grid.UnboxTest
Graphics.GPipe.VoxelTest
Test.Util
build-depends:
base
, HUnit >= 1.3
, linear
, QuickCheck >= 2.8.2
, tasty >= 0.11
, tasty-discover >= 4.2
, tasty-hunit >= 0.9
, tasty-quickcheck >= 0.8
, gpipe-voxel
default-extensions:
BangPatterns
DeriveGeneric
OverloadedStrings
RecordWildCards
ScopedTypeVariables
TupleSections