-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhgb.cabal
47 lines (44 loc) · 1.64 KB
/
hgb.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
name: hgb
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.2.0.0
synopsis: A Game Boy Emulator
homepage: https://github.com/Zenol/hgb
category: Game
license: ZLib
license-file: LICENSE
author: Jérémy Cochoy
maintainer: jeremy.cochoy@gmail.com
build-type: Simple
cabal-version: >=1.14
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: HGB.Types,
HGB.MMU,
HGB.CPU,
HGB.GPU,
HGB.IO,
HGB.Cartridge,
HGB.Lens
build-depends: base >= 4.6,
lens >= 3.9,
data-default >= 0.5,
vector >= 0.10,
mtl >= 2.1,
errors >= 1.4.2,
bytestring >= 0.10.0.2
executable hgb
hs-source-dirs: src
main-is: Shield.hs
build-depends: base >= 4.6,
lens >= 3.9,
data-default >= 0.5,
vector >= 0.10,
mtl >= 2.1,
errors >= 1.4.2,
bytestring >= 0.10.0.2,
SFML >= 2.3.2
-- Debug only :
-- groom >= 0.1