forked from ghorn/reflex-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathskeleton.cabal
38 lines (33 loc) · 1007 Bytes
/
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
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
, glib
, gtk3 >= 0.14.2
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"