1#ifndef CONFIG_H
2#define CONFIG_H
3
4/* Define to the full name of this package. */
5#cmakedefine PACKAGE_NAME "@PACKAGE_NAME@"
6
7/* Define to the full name and version of this package. */
8#cmakedefine PACKAGE_STRING "@PACKAGE_STRING@"
9
10/* Define to the version of this package. */
11#cmakedefine PACKAGE_VERSION "@PACKAGE_VERSION@"
12
13/* Define to the address where bug reports for this package should be sent. */
14#cmakedefine PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
15
16/* Define to the one symbol short name of this package. */
17#cmakedefine PACKAGE_TARNAME "@PACKAGE_TARNAME@"
18
19/* Define to the version of this package. */
20#cmakedefine CONFIG_VERSION "@CONFIG_VERSION@"
21
22/* Define to the build version of this package. */
23#cmakedefine CONFIG_BUILD_VERSION "@CONFIG_BUILD_VERSION@"
24
25/* Default installation prefix. */
26#cmakedefine CONFIG_PREFIX "@CONFIG_PREFIX@"
27
28/* Define to target installation dirs. */
29#cmakedefine CONFIG_BINDIR "@CONFIG_BINDIR@"
30#cmakedefine CONFIG_LIBDIR "@CONFIG_LIBDIR@"
31#cmakedefine CONFIG_DATADIR "@CONFIG_DATADIR@"
32#cmakedefine CONFIG_MANDIR "@CONFIG_MANDIR@"
33
34/* Define if debugging is enabled. */
35#cmakedefine CONFIG_DEBUG @CONFIG_DEBUG@
36
37/* Define to 1 if you have the <signal.h> header file. */
38#cmakedefine HAVE_SIGNAL_H @HAVE_SIGNAL_H@
39
40/* Define if SNDFILE library is available. */
41#cmakedefine CONFIG_SNDFILE @CONFIG_SNDFILE@
42
43/* Define if RUBBERBAND library is available. */
44#cmakedefine CONFIG_LIBRUBBERBAND @CONFIG_LIBRUBBERBAND@
45
46/* Define if FFTW3 library is available. */
47#cmakedefine CONFIG_FFTW3 @CONFIG_FFTW3@
48
49/* Define if JACK library is available. */
50#cmakedefine CONFIG_JACK @CONFIG_JACK@
51
52/* Define if ALSA MIDI support is enabled. */
53#cmakedefine CONFIG_ALSA_MIDI @CONFIG_ALSA_MIDI@
54
55/* Define if LIBLO library is available. */
56#cmakedefine CONFIG_LIBLO @CONFIG_LIBLO@
57
58/* Define if JACK session support is available. */
59#cmakedefine CONFIG_JACK_SESSION @CONFIG_JACK_SESSION@
60
61/* Define if JACK MIDI support is enabled. */
62#cmakedefine CONFIG_JACK_MIDI @CONFIG_JACK_MIDI@
63
64/* Define if LV2 plug-in build is enabled. */
65#cmakedefine CONFIG_LV2 @CONFIG_LV2@
66
67/* Define if lv2_atom_forge_object is available. */
68#cmakedefine CONFIG_LV2_ATOM_FORGE_OBJECT @CONFIG_LV2_ATOM_FORGE_OBJECT@
69
70/* Define if lv2_atom_forge_key is available. */
71#cmakedefine CONFIG_LV2_ATOM_FORGE_KEY @CONFIG_LV2_ATOM_FORGE_KEY@
72
73/* Define if LV2 X11 UI support is available. */
74#cmakedefine CONFIG_LV2_UI_X11 @CONFIG_LV2_UI_X11@
75
76/* Define if LV2 Windows UI support is available. */
77#cmakedefine CONFIG_LV2_UI_WINDOWS @CONFIG_LV2_UI_WINDOWS@
78
79/* Define if LV2 External UI extension is available. */
80#cmakedefine CONFIG_LV2_UI_EXTERNAL @CONFIG_LV2_UI_EXTERNAL@
81
82/* Define if LV2 UI Idle interface support is available. */
83#cmakedefine CONFIG_LV2_UI_IDLE @CONFIG_LV2_UI_IDLE@
84
85/* Define if LV2 UI Show interface support is available. */
86#cmakedefine CONFIG_LV2_UI_SHOW @CONFIG_LV2_UI_SHOW@
87
88/* Define if LV2 UI Resize interface support is available. */
89#cmakedefine CONFIG_LV2_UI_RESIZE @CONFIG_LV2_UI_RESIZE@
90
91/* Define if LV2 Programs extension is available. */
92#cmakedefine CONFIG_LV2_PROGRAMS @CONFIG_LV2_PROGRAMS@
93
94/* Define if LV2 Patch is supported. */
95#cmakedefine CONFIG_LV2_PATCH @CONFIG_LV2_PATCH@
96
97/* Define if LV2 Port-event is supported. (EXPERIMENTAL) */
98#cmakedefine CONFIG_LV2_PORT_EVENT @CONFIG_LV2_PORT_EVENT@
99
100/* Define if NSM support is available. */
101#cmakedefine CONFIG_NSM @CONFIG_NSM@
102
103
104#endif /* CONFIG_H */
105