-
Notifications
You must be signed in to change notification settings - Fork 3
/
terminal.cabal
55 lines (51 loc) · 1.63 KB
/
terminal.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
Name: Terminal
Version: 0.0.3
Description: Haskell terminal emulator
License: GPL
License-file: LICENSE
Author: Hannes Gräuler
Maintainer: [email protected]
Build-Type: Simple
Cabal-Version: >=1.2
Extra-source-files: README.md
Data-Files: data/fonts/*/*.ttf data/*.sh
Executable hsterm
Main-is: Main.hs
Hs-Source-Dirs: src/Hsterm, src
Extensions: CPP
Build-Depends: base >= 3 && < 5, containers, mtl, stm, random, array
Build-Depends: time, GLUT, OpenGLRaw, GLURaw, OpenGL, parsec, unix, process
Build-Depends: FTGL >= 1.333, colour, diffarray
GHC-Options: -O
Executable hstermplay
Main-is: Main.hs
Hs-Source-Dirs: src/Hstermplay, src
Extensions: CPP
Build-Depends: base >= 3 && < 5, containers, mtl, stm, random, array
Build-Depends: time, parsec, unix, process, diffarray
test-suite TerminalTests
type: exitcode-stdio-1.0
x-uses-tf: true
build-depends:
base >= 4 && < 5,
QuickCheck >= 2.4,
test-framework >= 0.4.1,
test-framework-quickcheck2,
HUnit,
diffarray,
test-framework-hunit
hs-source-dirs: tests/terminal, src
main-is: Main.hs
test-suite ParserTests
type: exitcode-stdio-1.0
x-uses-tf: true
build-depends:
base >= 4 && < 5,
QuickCheck >= 2.4,
test-framework >= 0.4.1,
test-framework-quickcheck2,
HUnit,
diffarray,
test-framework-hunit
hs-source-dirs: tests/parser, src
main-is: Main.hs