forked from dimitriv/Ziria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwplc.cabal
44 lines (38 loc) · 1.57 KB
/
wplc.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
name: wplc
version: 0.1
cabal-version: >= 1.10
copyright: (c) 2013 Microsoft
author: Gordon Stewart <jsseven@cs.princeton.edu>
Dimitrios Vytiniotis <dimitris@microsoft.com>
Bozidar Radunovic <bozidar@microsoft.com>
Geoffrey Mainland <mainland@cs.drexel.edu>
Mahanth Gowda <gowda2@illinois.edu>
stability: alpha
category: Language
synopsis: Compiler for the WPL language.
tested-with: GHC==7.6.3
description:
This package provides a compiler for the WPL language.
build-type: Simple
Executable wplc
hs-source-dirs: src src/BasicTypes src/Codegen src/Optimize src/Parse
src/Pipeline src/Typecheck src/Utils src/Vectorize
main-is: Main.hs
default-language: Haskell98
default-extensions: DoAndIfThenElse PatternGuards
build-depends:
array >= 0.2 && < 0.5,
base >= 4 && < 5,
containers >= 0.4 && < 0.6,
dlist >= 0.6 && < 0.7,
directory >= 1.2 && < 1.3,
language-c-quote >= 0.7.6 && < 0.8,
mainland-pretty >= 0.2.5 && < 0.3,
mtl >= 2.0 && < 3,
parsec >= 3.1 && < 3.2,
pretty >= 1.1 && < 1.2,
process >= 1.1 && < 1.2,
srcloc >= 0.4 && < 0.5,
symbol >= 0.1 && < 0.3,
transformers >= 0.3 && < 0.4,
unix-compat >= 0.4 && < 0.5