-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvnc-client.cabal
57 lines (51 loc) · 1.26 KB
/
vnc-client.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
-- Initial vnc-client.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: vnc-client
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
-- license-file:
author: Brandon Byskov, Xuchao Ding, Natalie Perna
-- maintainer:
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.18
library
hs-source-dirs: src
exposed-modules:
Client
Client.Handshake
Client.Messages
Client.Network
Client.Security
Client.Types
Client.Window
Client.Window.Graphics
Client.Window.Input
default-extensions:
FlexibleInstances
ScopedTypeVariables
TypeSynonymInstances
build-depends:
base >= 4.6
, binary
, bytestring
, lifted-base
, transformers
, network >= 2.4
, X11 >= 1.6.1.2
default-language: Haskell2010
ghc-options:
-fwarn-tabs
executable vnc-client
hs-source-dirs: app
main-is: Main.lhs
build-depends:
base >= 4.6
, gtk
, vnc-client
default-language: Haskell2010
ghc-options: -O