-
Notifications
You must be signed in to change notification settings - Fork 0
/
VB6-optim.cabal
121 lines (114 loc) · 2.53 KB
/
VB6-optim.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
cabal-version: 2.0
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 088b844d48165dcd056fc26ab783441025942d4ae679f9e339efeb824a8fab27
name: VB6-optim
version: 0.1.0.0
synopsis: Code transformation and optimisation for Visual Basic 6
description: Please see the README on GitHub at <https://github.com/visual2000/VB6-optim#readme>
category: Language Tools
homepage: https://github.com/visual2000/VB6-optim#readme
bug-reports: https://github.com/visual2000/VB6-optim/issues
author: Paul
maintainer: [email protected]
copyright: Copyright (c) 2020 Paul D.
license: BSD3
license-file: LICENSE
build-type: Custom
extra-source-files:
README.md
ChangeLog.md
src/Parser.y
src/Lexer.x
src/AG.ag
src/AG/Base.ag
src/AG/CallFreeStatements.ag
src/AG/CombineStatements.ag
src/AG/DimLift.ag
uuagc_options
source-repository head
type: git
location: https://github.com/visual2000/VB6-optim
custom-setup
setup-depends:
Cabal
, base
, uuagc >=0.9
, uuagc-cabal >=0.9
library
exposed-modules:
Lexer
Lib
Parser
Printer
Util
AG
other-modules:
Paths_VB6_optim
autogen-modules:
AG
hs-source-dirs:
src
default-extensions: StandaloneDeriving
other-extensions: CPP
ghc-options: -Wall -Werror -Wno-unused-matches -Wno-type-defaults -fwarn-incomplete-uni-patterns
build-depends:
MissingH
, array
, base >=4.7 && <5
, containers
, ini
, mtl
, pretty
, regex-compat
, text
, uuagc >=0.9
default-language: Haskell2010
executable VB6-optim-exe
main-is: Main.hs
other-modules:
Paths_VB6_optim
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
MissingH
, VB6-optim
, array
, base >=4.7 && <5
, containers
, directory
, filepath
, haskeline
, ini
, mtl
, pretty
, regex-compat
, text
, uuagc >=0.9
default-language: Haskell2010
test-suite VB6-optim-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_VB6_optim
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
MissingH
, VB6-optim
, array
, base >=4.7 && <5
, containers
, hspec
, hspec-expectations-pretty-diff
, ini
, mtl
, pretty
, regex-compat
, text
, uuagc >=0.9
default-language: Haskell2010