-
Notifications
You must be signed in to change notification settings - Fork 14
/
ghcjs-jquery.cabal
42 lines (38 loc) · 1.31 KB
/
ghcjs-jquery.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
-- Initial ghcjs-jquery.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: ghcjs-jquery
version: 0.1.0.0
homepage: http://github.com/ghcjs/ghcjs-jquery
license: MIT
license-file: LICENSE
author: Luite Stegeman
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: JavaScript/JQuery/nonghcjs.txt
library
js-sources: jsbits/makeListener.js, jquery/jquery-1.11.1.js
ghcjs-options: -O2 -Wall
exposed-modules: JavaScript.JQuery
JavaScript.JQuery.Internal
build-depends: base >= 4.7 && < 4.9,
data-default,
ghcjs-base,
ghcjs-dom > 0.2,
text
default-language: Haskell2010
include-dirs: JavaScript/JQuery
executable ghcjs-jquery-example
hs-source-dirs: example
main-is: Main.hs
ghcjs-options: -O2 -Wall
if impl(ghcjs)
cpp-options: -DGHCJS_BROWSER
build-depends: base >= 4.7 && < 4.9,
data-default,
ghcjs-base,
ghcjs-jquery,
ghcjs-dom > 0.2,
text
default-language: Haskell2010