-
Notifications
You must be signed in to change notification settings - Fork 11
/
sdl2-mixer.cabal
67 lines (53 loc) · 1.37 KB
/
sdl2-mixer.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
name: sdl2-mixer
version: 0.1.0
synopsis: Both high- and low-level bindings to the SDL_mixer library (version 2.0.0).
description:
This package contains bindings to the SDL_mixer 2 library, in both high- and
low-level forms, similar to the ones found in the 'sdl2' package.
license: BSD3
license-file: LICENSE
author: Vladimir Semyonov
maintainer: [email protected]
copyright: Copyright © 2015 Vladimir Semyonov
category: Sound
build-type: Simple
cabal-version: >= 1.10
library
ghc-options: -Wall
exposed-modules:
SDL.Mixer
SDL.Raw.Mixer
SDL.Raw.Mixer.Enum
SDL.Raw.Mixer.Types
hs-source-dirs:
src/
includes:
SDL_mixer.h
extra-libraries:
SDL2_mixer
pkgconfig-depends:
SDL2_mixer >= 2.0.0
build-depends:
base >= 4.7 && < 5,
sdl2 >= 2.0.0,
transformers >= 0.2 && < 0.5
default-language:
Haskell2010
executable example-basic-raw
build-depends:
base >= 4.7 && < 5,
sdl2 >= 2.0.0,
sdl2-mixer
hs-source-dirs: examples
main-is: BasicRaw.hs
default-language: Haskell2010
ghc-options: -Wall
executable example-basic
build-depends:
base >= 4.7 && < 5,
sdl2 >= 2.0.0,
sdl2-mixer
hs-source-dirs: examples
main-is: Basic.hs
default-language: Haskell2010
ghc-options: -Wall