-
Notifications
You must be signed in to change notification settings - Fork 3
/
llvm-general-quote.cabal
72 lines (67 loc) · 1.76 KB
/
llvm-general-quote.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
name: llvm-general-quote
version: 0.1.0.0
synopsis: QuasiQuoting llvm code for llvm-general
homepage: https://github.com/tvh/llvm-general-quote
description:
This package provides a QuasiQuotation for llvm-general.
license: BSD3
license-file: LICENSE
author: Timo von Holtz <tvh@tvholtz.de>
maintainer: Timo von Holtz <tvh@tvholtz.de>
copyright: Timo von Holtz 2014
category: Compilers/Interpreters, Code Generation
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/tvh/llvm-general-quote.git
library
exposed-modules:
LLVM.General.Quote.LLVM,
-- other-modules:
LLVM.General.Quote.Parser.Lexer,
LLVM.General.Quote.Parser.Tokens,
LLVM.General.Quote.Parser.Monad,
LLVM.General.Quote.Parser.Parser,
LLVM.General.Quote.Parser,
LLVM.General.Quote.AST,
LLVM.General.Quote.Base,
LLVM.General.Quote.SSA
other-extensions: CPP
ghc-options: -Wall
build-depends:
base >=4.7 && <4.8,
array >=0.5 && <0.6,
containers >=0.5 && <0.6,
mtl >= 2.2.1,
bytestring,
symbol,
srcloc,
mainland-pretty <= 0.3,
llvm-general-pure >= 3.4.3.0 && < 3.5,
syb,
template-haskell >= 2.7,
haskell-src-meta,
th-lift,
split
build-tools: alex, happy
hs-source-dirs: src
default-language: Haskell2010
Test-suite test
Default-language:
Haskell2010
Type:
exitcode-stdio-1.0
Hs-source-dirs:
test
Main-is:
test.hs
Build-depends:
base >= 4 && < 5
, tasty >= 0.8
, tasty-hunit >= 0.8
, HUnit
, llvm-general-quote
, llvm-general-pure
, containers