-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmfc.cabal
More file actions
75 lines (70 loc) · 1.87 KB
/
mfc.cabal
File metadata and controls
75 lines (70 loc) · 1.87 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
71
72
73
74
75
cabal-version: 1.12
name: mfc
version: 0.1.0.0
license: BSD3
license-file: LICENSE
maintainer: Leo
author: Leo
homepage: https://github.com/leo/mfc#readme
bug-reports: https://github.com/leo/mfc/issues
synopsis: A Maca Fortran Compiler In Haskell
category: Compilers/Interpreters
build-type: Simple
extra-source-files: README.md
library
exposed-modules:
Macaf
Macaf.Ast
Macaf.Codegen
Macaf.Parser.Combinator
Macaf.Sast
Macaf.Scanner.Combinator
Macaf.Semant
Macaf.MessageType
Macaf.Utils
hs-source-dirs: src
other-modules: Paths_mfc
default-language: Haskell2010
default-extensions: OverloadedStrings LambdaCase
ghc-options:
-Wall -fno-warn-name-shadowing -Wcompat -Wincomplete-uni-patterns
build-depends:
array,
base >=4.7 && <5,
bytestring,
containers,
directory,
filepath,
llvm-hs-pretty >=0.9 && <1,
llvm-hs-pure >=9 && <10,
megaparsec,
mtl,
parser-combinators,
prettyprinter,
string-conversions,
text
executable mfc
main-is: Main.hs
hs-source-dirs: app
other-modules: Paths_mfc
default-language: Haskell2010
default-extensions: OverloadedStrings LambdaCase
ghc-options:
-Wall -fno-warn-name-shadowing -Wcompat -Wincomplete-uni-patterns
build-depends:
array,
base >=4.7 && <5,
bytestring,
containers,
directory,
filepath,
llvm-hs-pretty >=0.9 && <1,
llvm-hs-pure >=9 && <10,
mfc,
megaparsec,
mtl,
optparse-applicative,
parser-combinators,
prettyprinter,
string-conversions,
text