-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimp.cabal
More file actions
106 lines (100 loc) · 2.36 KB
/
imp.cabal
File metadata and controls
106 lines (100 loc) · 2.36 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
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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 44d6b791288837604c1803be49bdd33320fcf764b6ef7199efa5034dba5b31b7
name: imp
version: 0.1.0.0
synopsis: Compiler for IMP programming language
description: This is a compiler for IMP programming language implemented in Haskell. It uses LLVM as compiler backend.
category: Compiler
homepage: https://github.com/eugmes/imp#readme
bug-reports: https://github.com/eugmes/imp/issues
author: Ievgenii Meshcheriakov <eugen@debian.org>
maintainer: Ievgenii Meshcheriakov <eugen@debian.org>
copyright: 2017-2018 Ievgenii Meshcheriakov
license: MIT
license-file: LICENSE
build-type: Simple
data-files:
stdlib/impstd.c
stdlib/impstd.h
source-repository head
type: git
location: https://github.com/eugmes/imp
library
exposed-modules:
IMP.AST
IMP.Codegen.Error
IMP.Codegen.GlobalCodegen
IMP.Codegen.SubCodegen
IMP.Codegen.Utils
IMP.Emit
IMP.Parser
IMP.Parser.Error
IMP.SourceLoc
IMP.SymbolTable
IMP.Types
Test.Tasty.IMP
other-modules:
Paths_imp
hs-source-dirs:
lib
ghc-options: -Wall -fno-warn-name-shadowing -Wcompat
build-depends:
base >=4.7 && <5
, bytestring
, composition-extra
, containers
, filepath
, llvm-hs-pure ==9.*
, megaparsec ==8.*
, mtl
, process-extras
, stringbuilder
, tasty
, temporary
, text
, text-show
, utf8-string
default-language: Haskell2010
executable impc
main-is: Main.hs
other-modules:
Paths_imp
hs-source-dirs:
src
ghc-options: -Wall -fno-warn-name-shadowing -Wcompat
build-depends:
base
, bytestring
, containers
, filepath
, imp
, llvm-hs ==9.*
, megaparsec ==8.*
, optparse-applicative
, process
, temporary
, text
default-language: Haskell2010
test-suite testsuite
type: exitcode-stdio-1.0
main-is: TestSuite.hs
other-modules:
CompilerTests
IMP.Test.Parser
IMP.Test.Tests
Paths_imp
hs-source-dirs:
test
ghc-options: -Wall -fno-warn-name-shadowing -Wcompat
build-depends:
base
, imp
, megaparsec ==8.*
, tasty
, tasty-hunit
, text
default-language: Haskell2010