blob: c95244c632286f3ccf42ebf451016a635ed5cade (
plain)
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
|
# CMakeLists.txt in celt
SET(CELT_SRCS
bands.c
celt.c
celt_decoder.c
celt_encoder.c
celt_lpc.c
cwrs.c
entcode.c
entdec.c
entenc.c
kiss_fft.c
laplace.c
mathops.c
mdct.c
modes.c
pitch.c
quant_bands.c
rate.c
vq.c
)
SET(CELT_HEADERS
arch.h
bands.h
celt.h
celt_lpc.h
cpu_support.h
cwrs.h
ecintrin.h
entcode.h
entdec.h
entenc.h
fixed_debug.h
fixed_generic.h
float_cast.h
kiss_fft.h
laplace.h
mathops.h
mdct.h
mfrngcod.h
modes.h
os_support.h
pitch.h
quant_bands.h
rate.h
stack_alloc.h
static_modes_fixed.h
static_modes_float.h
vq.h
_kiss_fft_guts.h
)
INCLUDE_DIRECTORIES(
${OPUS_INCLUDES_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/../include
)
|