blob: e2c98b482333dc50a89cee8e18c908b9b996fc0c (
plain)
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
|
name: qtah-examples
version: 0.1.0
synopsis: Example programs for Qtah Qt bindings
homepage: http://khumba.net/projects/qtah
license: LGPL-3
license-files: LICENSE.GPL, LICENSE.LGPL
author: Bryan Gardiner <bog@khumba.net>
maintainer: Bryan Gardiner <bog@khumba.net>
copyright: Copyright 2015-2016 Bryan Gardiner
category: Graphics
build-type: Simple
cabal-version: >=1.10
description:
Qtah is a set of Qt bindings for Haskell. This package contains example
programs to demonstrate use of the bindings.
executable qtah-examples
hs-source-dirs: src
main-is: Main.hs
other-modules:
Graphics.UI.Qtah.Example.Notepad
build-depends:
base >=4 && <5
, binary >=0.7 && <0.8
, bytestring >=0.10 && <0.11
, hoppy-runtime >=0.2 && <0.3
, qtah-qt5 >=0.1 && <0.2
ghc-options: -W -fwarn-incomplete-patterns -fwarn-unused-do-bind
default-language: Haskell2010
|