-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrainfuch.cabal
More file actions
70 lines (62 loc) · 2.07 KB
/
Copy pathbrainfuch.cabal
File metadata and controls
70 lines (62 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
cabal-version: >=1.10
-- Initial package description 'brainfuch.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: brainfuch
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: sphaso
maintainer: sphaso@protonmail.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library lib-brainfuch
hs-source-dirs: src
, src/Brainfuch
exposed-modules: Brainfuch.Formatter
, Brainfuch.Interpreter
, Brainfuch.Lexer
, Brainfuch.Parser
, Brainfuch.Types
, BrainfuchLib
build-depends: base >=4.12 && <4.13
, containers
, parsec
, text
default-language: Haskell2010
executable formatter-brainfuch
hs-source-dirs: formatter
main-is: Main.hs
build-depends: base >= 4.12 && <4.13
, lib-brainfuch
, text
default-language: Haskell2010
executable brainfuch
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.12 && <4.13
, lib-brainfuch
-- hs-source-dirs:
default-language: Haskell2010
test-suite test-brainfuch
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
, test/Brainfuch
other-modules: Brainfuch.FormatterSpec
, Brainfuch.InterpreterSpec
, Brainfuch.LexerSpec
, Brainfuch.ParserSpec
, BrainfuchLibSpec
build-depends: base >=4.12 && <4.13
, containers
, hspec
, lib-brainfuch
, text
build-tool-depends: hspec-discover:hspec-discover == 2.*
default-language: Haskell2010