-
Notifications
You must be signed in to change notification settings - Fork 6
/
mcqc.cabal
83 lines (79 loc) · 1.81 KB
/
mcqc.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
-- This file has been generated from package.yaml by hpack version 0.27.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 4e7af62ea4c3df50faa28dcdc4308d1899a3b0e20b481847b58773d037aeda00
name: mcqc
version: 0.1.0
synopsis: A codegen from Coq extracted JSON to C++17
description: MCQC is a compiler from Coq's Gallina programming language to low-level C++17 which can be compiled to assembly with clang.
category: Development
homepage: https://github.com/mit-pdos/mcqc
maintainer: Lef Ioannidis <[email protected]>
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/mit-pdos/mcqc
executable mcqc
main-is: Main.hs
ghc-options: -Wall -Wno-name-shadowing
other-modules:
Ops.Flags
Parser.Mod
Parser.Decl
Parser.Expr
Sema.Bool
Sema.String
Sema.Nat
Sema.IO
Sema.Prod
Sema.Pipeline
CIR.File
CIR.Decl
CIR.Expr
Classes.Typeful
Classes.Nameful
Classes.Pretty
Classes.Compilable
Codegen.Top
Codegen.Ind
Codegen.Rewrite
Common.Config
Common.Utils
Common.Pretty
Types.Context
Types.Templates
hs-source-dirs:
src
build-depends:
base,
aeson,
aeson-pretty,
ansi-wl-pprint,
array,
split,
bytestring,
prettyprinter,
containers,
unordered-containers,
extra,
directory,
filepath,
mono-traversable,
mtl,
generic-deriving,
text
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
test
cpp-options: -DTEST
build-depends:
base,
process
default-language: Haskell2010