-
Notifications
You must be signed in to change notification settings - Fork 2
/
cocoa.cabal
67 lines (64 loc) · 2.31 KB
/
cocoa.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
64
65
66
67
name: cocoa
version: 0.1.0.0
synopsis: Haskell Bindings to the Cocoa API
description: Haskell Bindings to the Cocoa API
homepage: https://github.com/TravisWhitaker/cocoa
license: MIT
license-file: LICENSE
author: Travis Whitaker
maintainer: [email protected]
copyright: Travis Whitaker 2018
category: Language
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: Cocoa.AppKit.NSApplication
Cocoa.AppKit.NSApplication.Type
Cocoa.AppKit.NSApplication.Msg
Cocoa.AppKit.NSApplicationActivationPolicy
Cocoa.AppKit.NSMenu
Cocoa.AppKit.NSMenu.Type
Cocoa.AppKit.NSMenu.Msg
Cocoa.AppKit.NSMenuItem
Cocoa.AppKit.NSMenuItem.Type
Cocoa.AppKit.NSMenuItem.Msg
Cocoa.Foundation.NSString
Cocoa.Foundation.NSString.Type
Cocoa.Foundation.NSString.Msg
Cocoa.Foundation.NSStringEncoding
-- other-modules: Cocoa.Foundation.NSString.Type
-- Cocoa.Foundation.NSString.Msg
-- other-extensions:
build-depends: base >=4.10 && <5
, bytestring
, objc-runtime
, text
hs-source-dirs: src
default-language: Haskell2010
extra-libraries: objc
frameworks: AppKit
Foundation
executable HelloCocoa
hs-source-dirs: hello-cocoa
main-is: Main.hs
build-depends: base
, cocoa
, objc-runtime
, text
extra-libraries: objc
frameworks: AppKit
Foundation
ghc-options: -dynamic -threaded
executable arc-instr-test
hs-source-dirs: tests/arc-instr-test
default-language: Haskell2010
main-is: Main.hs
build-depends: base
, cocoa
, objc-runtime
, text
extra-libraries: objc
frameworks: AppKit
Foundation
ghc-options: -dynamic -threaded