-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstretch-lang.cabal
92 lines (85 loc) · 1.96 KB
/
stretch-lang.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: e5a6f66191c4f4c3a42238fb750dddbf7a9daf1193a4e825562b0654e631a592
name: stretch-lang
version: 0.1.0.0
description: Please see the README on Github at <https://github.com/Xanewok/stretch-lang#readme>
homepage: https://github.com/Xanewok/stretch-lang#readme
bug-reports: https://github.com/Xanewok/stretch-lang/issues
author: Igor Matuszewski
maintainer: Xanewok@gmail.com
copyright: 2018 Igor Matuszewski
license: MIT
license-file: LICENSE
build-type: Custom
cabal-version: >= 1.10
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/Xanewok/stretch-lang
custom-setup
setup-depends:
Cabal >=1.10
, base >=4.7 && <5
, directory
, process
library
hs-source-dirs:
src
build-depends:
array
, base >=4.7 && <5
, containers
, directory
, mtl
, transformers
exposed-modules:
BNFC.AbsStretch
BNFC.ErrM
BNFC.LexStretch
BNFC.ParStretch
BNFC.PrintStretch
Lib
Typeck
Util
other-modules:
Paths_stretch_lang
default-language: Haskell2010
executable stretchi
main-is: Main.hs
hs-source-dirs:
app
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
array
, base >=4.7 && <5
, containers
, directory
, mtl
, stretch-lang
, transformers
other-modules:
Paths_stretch_lang
default-language: Haskell2010
test-suite stretch-lang-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
Glob
, array
, base >=4.7 && <5
, containers
, directory
, mtl
, stretch-lang
, transformers
other-modules:
Paths_stretch_lang
default-language: Haskell2010