-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathskeleton.cabal
41 lines (36 loc) · 1.08 KB
/
skeleton.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
name: skeleton
version: 0.0.0.2
synopsis: Skeleton
author: Greg Horn
maintainer: [email protected]
copyright: Copyright (c) 2019, Greg Horn
category: Graphics
build-type: Simple
cabal-version: >=1.10
extra-source-files:
README.md
.gitignore
description: {
reflexify me pls
}
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Skeleton
build-depends: base >= 4.6.0.0
, dependent-sum
, glib
, gtk3 >= 0.14.2
, reflex
, transformers
ghc-options: -O2 -Wall
ghc-prof-options: -O2 -Wall
executable run-skeleton
buildable: True
hs-source-dirs: apps
main-is: RunSkeleton.hs
default-language: Haskell2010
build-depends: base >= 4.5 && < 5
, skeleton
ghc-options: -O2 -Wall -threaded "-with-rtsopts=-T -N2"
ghc-prof-options: -O2 -Wall -threaded "-with-rtsopts=-T -N2"