-
Notifications
You must be signed in to change notification settings - Fork 2
/
clap.cabal
109 lines (104 loc) · 4.61 KB
/
clap.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
cabal-version: 3.8
name: clap
version: 0.1.0.0
extra-source-files: CHANGELOG.md
library
exposed-modules: Clap,
Clap.Extension,
Clap.Host,
Clap.Library,
Clap.Interface.AudioBuffer,
Clap.Interface.Color,
Clap.Interface.Entry,
Clap.Interface.Events,
Clap.Interface.Fixedpoint,
Clap.Interface.Host,
Clap.Interface.Id,
Clap.Interface.Plugin,
Clap.Interface.PluginFactory,
Clap.Interface.PluginFeatures,
Clap.Interface.PluginInvalidation,
Clap.Interface.Process,
Clap.Interface.StringSizes,
Clap.Interface.Stream,
Clap.Interface.Version,
Clap.Interface.Foreign,
Clap.Interface.Foreign.AudioBuffer,
Clap.Interface.Foreign.Color,
Clap.Interface.Foreign.Entry,
Clap.Interface.Foreign.Events,
Clap.Interface.Foreign.Fixedpoint,
Clap.Interface.Foreign.Host,
Clap.Interface.Foreign.Id,
Clap.Interface.Foreign.Plugin,
Clap.Interface.Foreign.PluginFactory,
Clap.Interface.Foreign.PluginInvalidation,
Clap.Interface.Foreign.Process,
Clap.Interface.Foreign.Stream,
Clap.Interface.Foreign.Version,
Clap.Interface.Extension.AudioPorts,
Clap.Interface.Extension.Gui,
Clap.Interface.Extension.Latency,
Clap.Interface.Extension.Log,
Clap.Interface.Extension.NotePorts,
Clap.Interface.Extension.Params,
Clap.Interface.Extension.Render,
Clap.Interface.Extension.State,
Clap.Interface.Extension.Tail,
Clap.Interface.Extension.ThreadCheck,
Clap.Interface.Extension.Foreign.AudioPorts,
Clap.Interface.Extension.Foreign.Gui,
Clap.Interface.Extension.Foreign.Latency,
Clap.Interface.Extension.Foreign.Log,
Clap.Interface.Extension.Foreign.NotePorts,
Clap.Interface.Extension.Foreign.Params,
Clap.Interface.Extension.Foreign.Render,
Clap.Interface.Extension.Foreign.State,
Clap.Interface.Extension.Foreign.Tail,
Clap.Interface.Extension.Foreign.ThreadCheck
build-depends: base,
bindings-DSL,
containers,
directory,
extra,
filepath
if os(windows)
other-modules: Clap.Library.Windows
build-depends: Win32
cpp-options: -DWINDOWS
else
other-modules: Clap.Library.POSIX
build-depends: unix
hs-source-dirs: src
default-language: Haskell2010
include-dirs: cbits
install-includes: clap/audio-buffer.h,
clap/clap.h,
clap/color.h,
clap/entry.h,
clap/events.h,
clap/fixedpoint.h,
clap/host.h,
clap/id.h,
clap/plugin-factory.h,
clap/plugin-features.h,
clap/plugin-invalidation.h,
clap/plugin.h,
clap/private/macros.h,
clap/private/std.h,
clap/process.h,
clap/stream.h,
clap/string-sizes.h,
clap/version.h,
clap/ext/audio-ports.h,
clap/ext/gui.h,
clap/ext/latency.h,
clap/ext/log.h,
clap/ext/note-ports.h,
clap/ext/params.h,
clap/ext/render.h,
clap/ext/state.h,
clap/ext/tail.h,
clap/ext/thread-check.h
c-sources: cbits/helper.c
ghc-options: -Wall