-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlibtcod.cabal
36 lines (34 loc) · 910 Bytes
/
libtcod.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
-- Initial libtcod.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: libtcod
version: 1.5.1
synopsis: A wrapper around the C TCOD library.
-- description:
license: BSD3
license-file: LICENSE
author: Laurie Clark-Michalek
maintainer: lclarkmichalek@gmail.com
-- copyright:
category: User Interfaces
build-type: Simple
cabal-version: >=1.8
library
exposed-modules:
UI.TCOD
UI.TCOD.Color
UI.TCOD.Console
UI.TCOD.System
UI.TCOD.Line
UI.TCOD.Image
UI.TCOD.Console.Types
UI.TCOD.Mouse
C-sources:
UI/TCOD/ccolor.c
UI/TCOD/cconsole.c
UI/TCOD/csys.c
UI/TCOD/cimage.c
UI/TCOD/cmouse.c
Include-dirs:
UI/TCOD
extra-libraries: tcod
build-depends: base ==4.5.*