-
Notifications
You must be signed in to change notification settings - Fork 8
/
language-cil.cabal
36 lines (34 loc) · 1.5 KB
/
language-cil.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
name: language-cil
version: 0.4.0
homepage: https://github.com/tomlokhorst/language-cil
synopsis: Manipulating Common Intermediate Language AST
description: Language-Cil is a Haskell library for manipulating CIL
abstract syntax and generating .il files.
.
Common Intermediate Language (CIL), formerly known as
Microsoft Intermediate Language (MSIL), is the lowest
level language that runs on Microsoft .NET and Mono.
.
This library is still under development, it only supports
a small subset of the full CIL.
.
See <https://github.com/tomlokhorst/language-cil#readme>
for an example of how to quickly get started.
license: BSD3
license-file: LICENSE
author: Jeroen Leeuwestein,
Tom Lokhorst
maintainer: Tom Lokhorst <[email protected]>
stability: Experimental
category: Language, .NET
build-type: Simple
cabal-version: >= 1.6
library
hs-source-dirs: src
build-depends: base > 3 && < 5,
bool-extras >= 0.4.0 && < 0.5
exposed-modules: Language.Cil
Language.Cil.Analysis
Language.Cil.Build
Language.Cil.Pretty
Language.Cil.Syntax