-
Notifications
You must be signed in to change notification settings - Fork 1
/
sdl2.cabal
66 lines (54 loc) · 1.39 KB
/
sdl2.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
name: sdl2
version: 1.3.0
synopsis: Low-level bindings to SDL2
description: Low-level bindings to the SDL2 library, version 2.0.3.
license: BSD3
license-file: LICENSE
author: Gabríel Arthúr Pétursson
maintainer: gabriel@system.is
copyright: Copyright © 2013, 2014 Gabríel Arthúr Pétursson
category: Graphics
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
cbits/sdlhelper.c,
include/sdlhelper.h
source-repository head
type: git
location: https://github.com/haskell-game/sdl2.git
source-repository this
type: git
location: https://github.com/haskell-game/sdl2.git
tag: v1.3.0
library
ghc-options: -Wall
exposed-modules:
Graphics.UI.SDL
Graphics.UI.SDL.Audio
Graphics.UI.SDL.Basic
Graphics.UI.SDL.Enum
Graphics.UI.SDL.Event
Graphics.UI.SDL.Filesystem
Graphics.UI.SDL.Haptic
Graphics.UI.SDL.Platform
Graphics.UI.SDL.Power
Graphics.UI.SDL.Thread
Graphics.UI.SDL.Timer
Graphics.UI.SDL.Types
Graphics.UI.SDL.Video
c-sources:
cbits/sdlhelper.c
include-dirs:
include
includes:
SDL.h
sdlhelper.h
extra-libraries:
SDL2
pkgconfig-depends:
sdl2 >= 2.0.3
build-depends:
base >= 4.7 && < 5,
transformers >= 0.2 && < 0.5
default-language:
Haskell2010