-
Notifications
You must be signed in to change notification settings - Fork 0
/
exampleTbl.cabal
64 lines (59 loc) · 2.2 KB
/
exampleTbl.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
58
59
60
61
62
63
name: exampleTbl
version: 0.1.1.2
synopsis: Examples (table components)
description: Examples: for ghcid dev-work, for nix-build and
for building a webkit2gtk app.
license: BSD3
author: gspia
maintainer: Use github to contact gspia
copyright: All rights reserved, gspia
category: Web
build-type: Simple
cabal-version: >=1.24
library
exposed-modules: MainW2
hs-source-dirs: libTbl
default-language: Haskell2010
build-depends: base
, containers
, lens
, text
, vector
, ghcjs-dom
, reflex
, reflex-dom
, jsaddle
, reflex-dom-htmlea
executable exampleTbl
main-is: Main.hs
hs-source-dirs: app
default-language: Haskell2010
build-depends: base
, exampleTbl
, reflex-dom
, reflex-dom-core
ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
-O2 -threaded -rtsopts -with-rtsopts=-N
-Wmissing-import-lists -Wno-redundant-constraints
-- To use ghcid and dev-server.sh, uncomment the following before
-- entering into the nix-shell.
-- Executable exampleTbl-wai
-- if impl ( ghcjs )
-- buildable: False
-- main-is: Main.hs
-- hs-source-dirs: app-wai
-- default-language: Haskell2010
-- build-depends: base
-- , exampleTbl
-- , reflex-dom
-- , reflex-dom-core
-- , jsaddle
-- , jsaddle-warp
-- -- following are for ghcid autoloading
-- , wai
-- , warp
-- , websockets
-- , wai-app-static
-- ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
-- -O2 -threaded -rtsopts -with-rtsopts=-N
-- -Wmissing-import-lists -Wno-redundant-constraints