-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasm.cabal
38 lines (36 loc) · 1.02 KB
/
basm.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
name: basm
version: 0.1.0.0
license: GPL-2
license-file: LICENSE
author: Brian Steffens
maintainer: briansteffens@gmail.com
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
executable basm
hs-source-dirs: src
main-is: Main.hs
build-depends: base,
binary,
bytestring,
containers
default-language: Haskell2010
other-modules: Definitions,
Elf,
Encoder,
Encodings,
Lexer,
Parser,
Shared
Test-Suite test-basm
type: exitcode-stdio-1.0
hs-source-dirs: testsuite, src
main-is: Test.hs
build-depends: base,
binary,
bytestring,
containers,
test-framework,
test-framework-hunit,
HUnit
default-language: Haskell2010