-
Notifications
You must be signed in to change notification settings - Fork 0
/
language-c-quote.cabal
71 lines (63 loc) · 1.83 KB
/
language-c-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: language-c-quote
version: 0.3.0.0
cabal-version: >= 1.10
license: BSD3
license-file: LICENSE
copyright: (c) 2006-2011 Harvard University
author: Geoffrey Mainland <[email protected]>
maintainer: [email protected]
stability: alpha
homepage: http://www.eecs.harvard.edu/~mainland/
category: Language
synopsis: C/CUDA/OpenCL quasiquoting library.
description:
This package provides a general parser for the C language, including most GCC
extensions and some CUDA and OpenCL extensions.
build-type: Custom
library
default-language: Haskell98
build-depends:
array >=0.2 && <0.4,
base >=4 && <5,
bytestring >=0.9 && <0.10,
containers >=0.4 && <0.5,
exception-mtl >=0.3 && <0.4,
exception-transformers >=0.3 && <0.4,
filepath >=1.2 && <1.3,
haskell-src-meta >= 0.4 && < 0.5,
mainland-pretty >=0.1 && <0.2,
mtl >=2.0 && <2.1,
srcloc >=0.1 && <0.2,
syb >=0.3 && <0.4,
symbol >=0.1 && <0.2,
template-haskell >=2.5 && <2.6
exposed-modules:
Language.C
Language.C.Parser
Language.C.Parser.Lexer
Language.C.Parser.Monad
Language.C.Parser.Parser
Language.C.Parser.Tokens
Language.C.Pretty
Language.C.Quote
Language.C.Quote.Base
Language.C.Quote.C
Language.C.Quote.CUDA
Language.C.Quote.OpenCL
Language.C.Quote.GCC
Language.C.Smart
Language.C.Syntax
test-suite unit
type: exitcode-stdio-1.0
hs-source-dirs: tests/unit
main-is: Main.hs
default-language: Haskell98
build-depends:
HUnit >=1.2 && <1.3,
base >=4 && <5,
language-c-quote >=0.3.0 && <0.3.1,
srcloc >=0.1 && <0.2,
symbol >=0.1 && <0.2
source-repository head
type: svn
location: http://senseless.eecs.harvard.edu/repos/mainland-projects/language-c-quote/trunk/