-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgf-ud.cabal
64 lines (58 loc) · 1.57 KB
/
gf-ud.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
-- Initial gf-ud.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: gf-ud
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Aarne Ranta
maintainer: aarne@chalmers.se
-- copyright:
category: Language
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
cabal-version: >=1.10
executable gf-ud
main-is: MainUDGF.hs
other-modules: Backend
, DBNF
, GF2UD
, GFConcepts
, RTree
, UD2GF
, UDAnalysis
, UDAnnotations
, UDConcepts
, UDOptions
, UDStandard
, UDVisualization
, UDPatterns
-- other-extensions:
build-depends: base, containers, pretty, gf, process, filepath, split
-- hs-source-dirs:
default-language: Haskell2010
library
exposed-modules:
RTree,
UDStandard,
UDConcepts,
UDPatterns,
UDAnalysis,
UDOptions,
UDVisualization,
TransformUD,
GFConcepts,
UDAnnotations,
UD2GF,
GF2UD,
Backend,
DBNF,
AutoAnnotations
build-depends: base, containers, pretty, gf, process, filepath, split
default-language: Haskell2010
test-suite gfud-testsuite
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: TestSuite.hs
build-depends: base, gf-ud, gf, hspec