forked from sgillespie/haskell-gltf-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gltf-loader.cabal
150 lines (144 loc) · 3.76 KB
/
gltf-loader.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
cabal-version: 3.0
name: gltf-loader
version: 0.3.0.0
synopsis: High level GlTF loader
description: Please see the README on Github at <https://github.com/sgillespie/haskell-gltf-loader#readme>
category: Graphics
homepage: https://github.com/sgillespie/haskell-gltf-loader#readme
license: MIT
license-file: LICENSE
author: Sean D Gillespie
maintainer: [email protected]
copyright: 2022 Sean Gillespie
build-type: Simple
extra-source-files:
README.md
data/big-cube.gltf
data/cube-colored.gltf
data/cube-separate.bin
data/cube-separate.gltf
data/cube.glb
data/cube.gltf
data/invalid.gltf
data/Untitled.png
source-repository head
type: git
location: https://github.com/sgillespie/haskell-gltf-loader
common shared
default-extensions:
BangPatterns
BinaryLiterals
ConstraintKinds
DataKinds
DefaultSignatures
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
DoAndIfThenElse
EmptyDataDecls
ExistentialQuantification
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
LambdaCase
MultiParamTypeClasses
MultiWayIf
NamedFieldPuns
NoImplicitPrelude
OverloadedStrings
OverloadedLists
PartialTypeSignatures
PatternGuards
PolyKinds
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
TypeFamilies
TypeSynonymInstances
ViewPatterns
ghc-options:
-Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wno-unrecognised-pragmas
-Wpartial-fields
-Wredundant-constraints
build-depends:
base >=4.14.0 && <5,
linear ^>=1.22,
microlens ^>=0.4.13,
microlens-platform ^>=0.4.3,
rio ^>=0.1.22
library
import: shared
exposed-modules:
Text.GLTF.Loader
Text.GLTF.Loader.Errors
Text.GLTF.Loader.Glb
Text.GLTF.Loader.Gltf
Text.GLTF.Loader.Internal.Adapter
Text.GLTF.Loader.Internal.BufferAccessor
Text.GLTF.Loader.Internal.Decoders
Text.GLTF.Loader.Internal.MonadAdapter
other-modules:
Paths_gltf_loader
hs-source-dirs:
src
build-depends:
binary ^>=0.8.8,
bytestring >=0.10.12 && <0.12,
gltf-codec ^>=0.1.0,
unordered-containers ^>=0.2.19
default-language: Haskell2010
executable gltf-loader
import: shared
main-is: Main.hs
other-modules:
Command.GLTF.Loader
Command.GLTF.Loader.App
Command.GLTF.Loader.Run
Paths_gltf_loader
hs-source-dirs: app
ghc-options:
-threaded
-rtsopts
-with-rtsopts=-N
build-depends:
gltf-loader,
optparse-simple ^>=0.1.1
default-language: Haskell2010
test-suite gltf-loader-test
import: shared
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Text.GLTF.Loader.Internal.AdapterSpec
Text.GLTF.Loader.Internal.BufferAccessorSpec
Text.GLTF.Loader.Test.MkGltf
Text.GLTF.LoaderSpec
Paths_gltf_loader
hs-source-dirs: test
ghc-options:
-threaded
-rtsopts
-with-rtsopts=-N
default-language: Haskell2010
build-depends:
base64 >=0.4.2 && <2,
binary ^>=0.8.8,
bytestring >=0.10.12 && <0.12,
gltf-codec ^>=0.1.0,
gltf-loader,
hspec >=2.10.10 && <3,
unordered-containers ^>=0.2.19