-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.h.cmake
91 lines (65 loc) · 2.83 KB
/
config.h.cmake
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
/***************************************************************************
config.h.cmake - template config.h (cmake build system)
-------------------
begin : Sun Jun 10 2007
copyright : (C) 2007 by Thomas Eschenbacher
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
/* use ppc target optimizations (from xine) */
#cmakedefine ARCH_PPC
/* use ix86 target optimizations (from xine) */
#cmakedefine ARCH_X86
/* use X86_64 target optimizations (from xine) */
#cmakedefine ARCH_X86_64
/* use target optimized memcpy */
#cmakedefine WITH_OPTIMIZED_MEMCPY
/* use target optimized memcpy using AVX assembler code */
#cmakedefine HAVE_AVX
/* support playback/recording via ALSA */
#cmakedefine HAVE_ALSA_SUPPORT
/* enable the debug plugin in the menu */
#cmakedefine HAVE_DEBUG_PLUGIN
/* support playback/recording via PulseAudio */
#cmakedefine HAVE_PULSEAUDIO_SUPPORT
/* support playback via Qt */
#cmakedefine HAVE_QT_AUDIO_SUPPORT
/* support libaudiofile */
#cmakedefine HAVE_LIBAUDIOFILE
/* support libsamplerate */
#cmakedefine HAVE_LIBSAMPLERATE
/* support playback/recording via OSS */
#cmakedefine HAVE_OSS_SUPPORT
/* Define to 1 if you have the <signal.h> header file. */
#cmakedefine HAVE_SIGNAL_H
/* we can include <sys/times.h> */
#cmakedefine HAVE_SYS_TIMES_H
/* used for unlinking swap files */
#cmakedefine HAVE_UNLINK
/* support FLAC */
#cmakedefine HAVE_FLAC
/* support MP3 */
#cmakedefine HAVE_MP3
/* does libogg have the function ogg_stream_flush_fill ? (>= v1.3.0) */
#cmakedefine HAVE_OGG_STREAM_FLUSH_FILL
/* support Vorbis in Ogg */
#cmakedefine HAVE_OGG_VORBIS
/* support Opus in Ogg */
#cmakedefine HAVE_OGG_OPUS
/* Name of package */
#cmakedefine PROJECT_NAME "@PROJECT_NAME@"
/* version of the application */
#cmakedefine KWAVE_VERSION "@KWAVE_VERSION@"
/* suffix of executable files */
#cmakedefine EXECUTABLE_SUFFIX @CMAKE_EXECUTABLE_SUFFIX@
/* libaudiofile knows FLAC compression */
#cmakedefine HAVE_AF_COMPRESSION_FLAC
/***************************************************************************/
/***************************************************************************/