-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathhnes.cabal
76 lines (71 loc) · 2.34 KB
/
hnes.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
67
68
69
70
71
72
73
74
75
76
name: hnes
version: 0.1.0.0
homepage: https://github.com/dbousamra/hnes#readme
license: BSD3
license-file: LICENSE
author: Dominic Bou-Samra
copyright: 2017 Dominic Bou-Samra
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
hs-source-dirs: src
exposed-modules: Emulator
, Emulator.Nes
, Emulator.PPU
, Emulator.CPU
, Emulator.Cartridge
, Emulator.Mapper
, Emulator.Mapper.Mapper2
, Emulator.Mapper.Mapper3
, Emulator.Mapper.Mapper7
, Emulator.Opcode
, Emulator.Util
, Emulator.Trace
, Emulator.Controller
default-extensions: Strict
ghc-options: -O2
-fno-warn-name-shadowing
-fwarn-unused-imports
-- -fllvm
-funbox-strict-fields
build-depends: base >= 4.7 && < 5
, mtl
, vector
, bytestring
, monad-loops
, containers
default-language: Haskell2010
executable hnes
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
default-extensions: Strict
ghc-options: -O2
-- -fllvm
-funbox-strict-fields
build-depends: base >= 4.7 && < 5
, hnes
, mtl
, text
, vector
, bytestring
, sdl2
, containers
test-suite hnes-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: SpecHelper
, Nestest.Parsing
, Nestest.Spec
, Blargg.Spec
build-depends: base
, hnes
, bytestring
, parsec
, tasty
, tasty-hunit
ghc-options: -fforce-recomp
default-language: Haskell2010