-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstb-image-redux.cabal
45 lines (41 loc) · 1.78 KB
/
stb-image-redux.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
name: stb-image-redux
version: 0.2.1.3
synopsis: Image loading and writing microlibrary
description: See <https://github.com/typedrat/stb-image-redux/blob/master/README.md>.
homepage: https://github.com/typedrat/stb-image-redux#readme
license: BSD3
license-file: LICENSE
author: Alexis Williams
maintainer: [email protected]
copyright: Copyright: (c) 2016-2019 Alexis Williams
category: Graphics
build-type: Simple
extra-source-files: test/jellybeans.tga test/jellybeans.bmp test/jellybeans-flipped.bmp stb/stb_image.h stb/stb_image_write.h
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Data.STBImage
other-modules: Data.STBImage.Color
, Data.STBImage.ColorTypes
, Data.STBImage.Immutable
build-depends: base >= 4.8 && < 5
, vector >= 0.10.12.3 && < 0.13
c-sources: cbits/stb_image.c
, cbits/stb_image_write.c
include-dirs: stb
cc-options: -DSTBI_NO_HDR -DSTBI_NO_LINEAR -DSTBI_FAILURE_USERMSG
default-language: Haskell2010
test-suite stb-image-redux-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Data.STBImageSpec
build-depends: base
, stb-image-redux
, vector >= 0.10.12.3 && < 0.13
, hspec >= 2.1.5 && < 2.7.1
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/typedrat/stb-image-redux