-
Notifications
You must be signed in to change notification settings - Fork 4
/
llvm-hs-quote.cabal
73 lines (69 loc) · 2.02 KB
/
llvm-hs-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
72
73
name: llvm-hs-quote
version: 0.1.0.0
synopsis: QuasiQuoting llvm code for llvm-hs
homepage: https://github.com/llvm-hs/llvm-hs-quote
description:
This package provides a QuasiQuotation for llvm-hs.
license: BSD3
license-file: LICENSE
author: Timo von Holtz <[email protected]>
maintainer: Timo von Holtz <[email protected]>
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/llvm-hs/llvm-hs-quote.git
library
exposed-modules:
LLVM.Quote.LLVM
other-modules:
LLVM.Quote.AST,
LLVM.Quote.Base
LLVM.Quote.Parser.Lexer,
LLVM.Quote.Parser.Tokens,
LLVM.Quote.Parser.Monad,
LLVM.Quote.Parser.Parser
LLVM.Quote.Parser
other-extensions: CPP
ghc-options: -Wall
build-depends:
base >=4.7 && <5.0,
array -any,
containers -any,
mtl -any,
bytestring,
symbol,
srcloc,
mainland-pretty,
llvm-hs-pure,
syb,
template-haskell >= 2.7,
haskell-src-meta,
th-lift,
th-lift-instances,
split
build-tools: alex, happy
hs-source-dirs: src
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
other-modules: LLVM.Quote.Test.Tests
LLVM.Quote.Test.Constants
LLVM.Quote.Test.DataLayout
LLVM.Quote.Test.InlineAssembly
LLVM.Quote.Test.Instructions
LLVM.Quote.Test.Metadata
LLVM.Quote.Test.Module
build-depends: base
, containers
, llvm-hs-pure
, llvm-hs-quote
, tasty
, tasty-hunit
, bytestring
default-language: Haskell2010