-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpadpeek.cabal
More file actions
54 lines (51 loc) · 1.89 KB
/
padpeek.cabal
File metadata and controls
54 lines (51 loc) · 1.89 KB
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
name: padpeek
version: 0.1.0.0
synopsis: On-screen display of inputs on a gamepad
description:
Reads output from arduino-modded gamepad (see padpeek wiki) and displays the inputs on a gui for e.g. live-streaming.
homepage: https://github.com/wuest/padpeek
license: BSD3
license-file: LICENSE
author: Tina Wuest
maintainer: tina@wuest.me
copyright: (c) 2016 Tina Wuest
category: Game
build-type: Simple
cabal-version: >= 1.10
-- executable padpeek-qt
-- default-language: Haskell2010
-- hs-source-dirs: src
-- main-is: Main-qt.hs
-- ghc-options: -threaded -static -Wall -fwarn-implicit-prelude -fwarn-monomorphism-restriction
-- build-depends:
-- base >= 4.8 && < 5.0,
-- containers >= 0.5 && < 0.6,
-- text >= 0.11 && < 1.3,
-- serialport >= 0.4.7 && < 0.5,
-- bytestring >= 0.10 && < 0.11,
-- time >= 1.6 && < 1.7,
-- hsqml == 0.3.*
executable padpeek-cli
default-language: Haskell2010
hs-source-dirs: src
main-is: Main-cli.hs
ghc-options: -threaded -static -Wall -fwarn-implicit-prelude -fwarn-monomorphism-restriction
build-depends:
base >=4.8 && < 5.0,
containers >= 0.5 && < 0.6,
text >= 0.11 && < 1.3,
serialport >= 0.4.7 && < 0.5,
bytestring >= 0.10 && < 0.11,
time >= 1.6 && < 1.7
executable padpeek-debug
default-language: Haskell2010
hs-source-dirs: src
main-is: Main-debug.hs
ghc-options: -threaded -static -Wall -fwarn-implicit-prelude -fwarn-monomorphism-restriction
build-depends:
base >=4.8 && < 5.0,
containers >= 0.5 && < 0.6,
text >= 0.11 && < 1.3,
serialport >= 0.4.7 && < 0.5,
bytestring >= 0.10 && < 0.11,
time >= 1.6 && < 1.7