-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpbasm.cabal
68 lines (59 loc) · 1.46 KB
/
pbasm.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
name: pbasm
version: 0.1.1
synopsis: An assembler for the PicoBlaze (KCPSM6) microcontroller in the Haskell programming language.
homepage: https://github.com/nullobject/pbasm
license: MIT
license-file: LICENSE
author: Josh Bassett
maintainer: josh.bassett@gmail.com
build-type: Simple
cabal-version: >= 1.10
library
ghc-options: -Wall -Werror
hs-source-dirs: src
default-language: Haskell2010
exposed-modules:
Language.Pbasm.Assembler
Language.Pbasm.Core
Language.Pbasm.Parser
Language.Pbasm.Parser.State
Language.Pbasm.Parser.Token
Language.Pbasm.Template
Language.Pbasm.Template.State
build-depends:
base >= 4.8 && < 5
, containers
, mtl
, parsec
, split
executable pbasm
ghc-options: -Wall -Werror
hs-source-dirs: bin
main-is: Main.hs
default-language: Haskell2010
other-modules:
CLI
build-depends:
base >= 4.8 && < 5
, cmdargs
, filepath
, pbasm
test-suite spec
type: exitcode-stdio-1.0
ghc-options: -Wall -Werror
hs-source-dirs: test
main-is: Spec.hs
default-language: Haskell2010
other-modules:
Language.Pbasm.AssemblerSpec
Language.Pbasm.Parser.StateSpec
Language.Pbasm.Parser.TokenSpec
Language.Pbasm.ParserSpec
Language.Pbasm.Template.StateSpec
Language.Pbasm.TemplateSpec
build-depends:
base >= 4.8 && < 5
, containers
, hspec
, parsec
, pbasm