-
Notifications
You must be signed in to change notification settings - Fork 0
/
bearlibterminal.cabal
55 lines (50 loc) · 1.5 KB
/
bearlibterminal.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
cabal-version: 3.6
name: bearlibterminal
version: 0.0.1.0
synopsis: Low-level Haskell bindings to the bearlibterminal graphics library.
description: Low-level Haskell bindings to the bearlibterminal graphics library.
homepage: https://github.com/PPKFS/bearlibterminal-hs
bug-reports: https://github.com/PPKFS/bearlibterminal-hs/issues
license: MIT
author: Avery
maintainer: Avery <[email protected]>
copyright: 2024 Avery
category: Game Development
build-type: Simple
tested-with: GHC == 9.8.2
source-repository head
type: git
location: https://github.com/PPKFS/bearlibterminal-hs.git
common common-options
build-depends:
base >= 4.17.2 && < 5
, text >= 2.1.1 && < 2.2
, bytestring >= 0.12.1 && < 0.13
, mtl >= 2.3.1 && < 2.4
ghc-options:
-Wall -Werror -Wcompat -Widentities -Wredundant-constraints
-Wno-unused-packages -Wno-deprecations -fhide-source-paths
-Wno-unused-top-binds -Wmissing-deriving-strategies
default-language: GHC2021
default-extensions:
DerivingStrategies
OverloadedStrings
MultiWayIf
BlockArguments
LambdaCase
library
import: common-options
hs-source-dirs: src
exposed-modules:
BearLibTerminal
BearLibTerminal.Raw
BearLibTerminal.Keycodes
extra-libraries: stdc++ BearLibTerminal
include-dirs:
cbits
includes:
cbits/BearLibTerminal.h
cbits/BearLibTerminalExtras.h
install-includes:
cbits/BearLibTerminal.h
cbits/BearLibTerminalExtras.h