-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhada.cabal
executable file
·62 lines (53 loc) · 2.25 KB
/
hada.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
-- Initial hada.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
Name: hada
Version: 0.1.0.0
-- synopsis:
-- description:
License: LGPL-3
License-file: LICENSE
Author: Yujie Wen
Maintainer: [email protected]
-- copyright:
Category: Language
Build-type: Simple
Extra-source-files: README.org
Cabal-version: >=1.10
Executable hada
Main-is: Main.hs
other-modules: MyPpr, SVerilog, Syn, Verilator, SynType, ListX, NameX, TypeX, JobGraph, TopoGraph, VHText, TextExpr
Hs-source-dirs: src
Default-language: Haskell2010
Build-depends: base >= 4.9, ghc >= 8.0.1, ghc-paths, containers, transformers, filepath, mtl, algebraic-graphs
-- Test-Suite TestFixedWidth
-- Type: detailed-0.9
-- Test-module: Data.TestFixedWidth
-- Default-language: Haskell2010
-- Hs-source-dirs: test
-- Build-depends: base, Cabal > 1.9.2, hada
Executable ir
Main-is: Main.hs
other-modules: SExpTokens, SExpSyntax, Syntax, Eval
Hs-source-dirs: src/IR
Build-depends: base, directory, array, containers, mtl, transformers
Test-Suite test-ir-syntax
Type: exitcode-stdio-1.0
Main-is: TestIRSyntax.hs
other-modules: SExpTokens, SExpSyntax, Syntax, Eval, Heap, Env, Closure
Default-language: Haskell2010
Hs-source-dirs: test, src/IR
Build-depends: base, directory, array, containers, mtl, transformers, HUnit
Test-Suite test-type-infer
Type: exitcode-stdio-1.0
Main-is: TestTypeInfer.hs
other-modules: TypeTokens, TypeSyntax, Type, SExpTokens, SExpSyntax, Syntax, InferType
Default-language: Haskell2010
Hs-source-dirs: test, src/IR
Build-depends: base, directory, array, containers, mtl, HUnit
-- test-suite TestShell
-- type: exitcode-stdio-1.0
-- main-is: TestShell.hs
-- other-modules: Shell, DFG, DFGSyn, PprDFG, Verilog
-- default-language: Haskell2010
-- hs-source-dirs: src
-- build-depends: base, Cabal, ghc >= 8.0.1, transformers, containers, mtl, ghc-paths, split, HUnit