-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchipi-chapa.cabal
More file actions
60 lines (56 loc) · 1.35 KB
/
chipi-chapa.cabal
File metadata and controls
60 lines (56 loc) · 1.35 KB
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
cabal-version: 3.0
name: chipi-chapa
version: 0.1.9
-- synopsis:
-- description:
homepage: https://github.com/ProggerX/chipi-chapa
license: GPL-3.0-only
license-file: LICENSE
author: ProggerX
maintainer: x@proggers.ru
-- copyright:
build-type: Simple
-- extra-source-files:
data-files: beep.wav
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: ChipiChapa
other-modules:
ChipiChapa.Types,
ChipiChapa.Types.Opcodes,
ChipiChapa.Types.Keyboard,
ChipiChapa.Types.Font,
ChipiChapa.GUI,
ChipiChapa.CPU,
ChipiChapa.CPU.Math,
ChipiChapa.CPU.Flow,
ChipiChapa.CPU.Input,
ChipiChapa.CPU.Regs,
ChipiChapa.Parser
-- other-extensions:
build-depends:
base >= 4.19.2.0,
vector,
binary,
bytestring,
text,
mtl,
lens,
h-raylib,
parsec,
random,
file-embed,
hs-source-dirs: src
default-language: GHC2021
executable chipi-chapa
import: warnings
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends:
base >= 4.19.2.0,
chipi-chapa
hs-source-dirs: app
default-language: GHC2021