-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameCom.cabal
57 lines (53 loc) · 1.66 KB
/
GameCom.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
name: GameCom
version: 0.1.0.0
synopsis: NES emulator in Haskell
homepage: https://github.com/rkoeninger/GameCom
license: MIT
license-file: LICENSE.txt
author: Robert Koeninger
maintainer: [email protected]
category: Game
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/rkoeninger/GameCom
library
exposed-modules: APU,
Base,
CPU,
GameCom,
Memory,
PPU,
ROM
build-depends: attoparsec,
base,
bytestring,
containers,
data-default,
primitive
hs-source-dirs: src/lib
ghc-options: -fsimpl-tick-factor=800
default-language: Haskell2010
executable GameCom
main-is: Main.hs
build-depends: base,
bytestring,
data-default,
directory,
GameCom,
sdl2
hs-source-dirs: src/main
default-language: Haskell2010
test-suite test-all
type: exitcode-stdio-1.0
main-is: Test.hs
build-depends: base,
bytestring,
containers,
data-default,
GameCom,
hspec
hs-source-dirs: src/test
default-language: Haskell2010