2
0
mirror of https://github.com/rehlds/revoice.git synced 2025-03-03 17:15:25 +03:00

Move speex private headers to src directory

This commit is contained in:
the_hunter 2025-02-23 22:39:33 +02:00
parent 3902100b0e
commit c7f858e7af
17 changed files with 16 additions and 16 deletions

View File

@ -20,58 +20,58 @@ add_library("${TARGET_ALIAS}" ALIAS "${TARGET_NAME}")
target_sources("${TARGET_NAME}"
PUBLIC
"include/speex/cb_search.h"
"include/speex/filters_sse.h"
"include/speex/filters.h"
"include/speex/lpc.h"
"include/speex/lsp.h"
"include/speex/ltp_sse.h"
"include/speex/ltp.h"
"include/speex/math_approx.h"
"include/speex/misc.h"
"include/speex/modes.h"
"include/speex/nb_celp.h"
"include/speex/quant_lsp.h"
"include/speex/sb_celp.h"
"include/speex/speex_bits.h"
"include/speex/speex_callbacks.h"
"include/speex/speex_header.h"
"include/speex/speex_stereo.h"
"include/speex/speex.h"
"include/speex/stack_alloc.h"
"include/speex/vbr.h"
"include/speex/vq.h"
PRIVATE
"src/bits.c"
"src/cb_search.c"
"src/cb_search.h"
"src/exc_10_16_table.c"
"src/exc_10_32_table.c"
"src/exc_20_32_table.c"
"src/exc_5_256_table.c"
"src/exc_5_64_table.c"
"src/exc_8_128_table.c"
"src/filters_sse.h"
"src/filters.c"
"src/filters.h"
"src/gain_table_lbr.c"
"src/gain_table.c"
"src/hexc_10_32_table.c"
"src/hexc_table.c"
"src/high_lsp_tables.c"
"src/lpc.c"
"src/lpc.h"
"src/lsp_tables_nb.c"
"src/lsp.c"
"src/lsp.h"
"src/ltp_sse.h"
"src/ltp.c"
"src/ltp.h"
"src/math_approx.c"
"src/math_approx.h"
"src/misc.c"
"src/misc.h"
"src/modes.c"
"src/modes.h"
"src/nb_celp.c"
"src/nb_celp.h"
"src/quant_lsp.c"
"src/quant_lsp.h"
"src/sb_celp.c"
"src/sb_celp.h"
"src/speex_callbacks.c"
"src/speex_header.c"
"src/stack_alloc.h"
"src/stereo.c"
"src/vbr.c"
"src/vbr.h"
"src/vq.c"
"src/vq.h"
)
#-------------------------------------------------------------------------------