forked from jaspervdj/dcpu16-hs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdcpu16-hs.cabal
74 lines (66 loc) · 1.94 KB
/
dcpu16-hs.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
Name: dcpu16-hs
Version: 0.0.0.1
Synopsis: Implementation of Notch's dcpu-16 CPU in Haskell
Homepage: https://github.com/jaspervdj/dcpu16-hs
License: BSD3
License-file: LICENSE
Author: Jasper Van der Jeugt <[email protected]>
Maintainer: Jasper Van der Jeugt <[email protected]>
Category: Development
Build-type: Simple
Cabal-version: >= 1.2
Executable dcpu16-emulator
Ghc-options: -Wall -fwarn-tabs
Hs-source-dirs: src
Main-is: Emulator/Main.hs
Other-modules:
Emulator
Emulator.Log
Emulator.Monad
Emulator.Monad.ST
Emulator.Monad.IO
Emulator.Video
Instruction
Memory
Util
Build-depends:
ansi-terminal >= 0.5 && < 0.6,
base >= 4 && < 5,
bytestring >= 0.9 && < 0.10,
cmdargs >= 0.8 && < 0.10,
ghc-prim >= 0.2 && < 0.3,
mtl >= 2.0 && < 2.1
Executable dcpu16-assembler
Ghc-options: -Wall -fwarn-tabs
Hs-source-dirs: src
Main-is: Assembler/Main.hs
Other-modules:
Assembler
Assembler.Parser
Instruction
Memory
Build-depends:
base >= 4 && < 5,
blaze-builder >= 0.3 && < 0.4,
bytestring >= 0.9 && < 0.10,
cmdargs >= 0.8 && < 0.10,
containers >= 0.3 && < 0.5,
parsec >= 3.1 && < 3.2
Test-suite dcpu16-tests
Ghc-options: -Wall -fwarn-tabs
Hs-source-dirs: src tests
Main-is: TestSuite.hs
Type: exitcode-stdio-1.0
Build-depends:
HUnit >= 1.2 && < 1.3,
containers >= 0.3 && < 0.5,
test-framework >= 0.4 && < 0.7,
test-framework-hunit >= 0.2 && < 0.3,
-- Copied from regular dependencies...
base >= 4 && < 5,
blaze-builder >= 0.3 && < 0.4,
bytestring >= 0.9 && < 0.10,
containers >= 0.3 && < 0.5,
ghc-prim >= 0.2 && < 0.3,
mtl >= 2.0 && < 2.1,
parsec >= 3.1 && < 3.2