search for: speexenc_sourc

Displaying 2 results from an estimated 2 matches for "speexenc_sourc".

Did you mean: speexenc_sources
2004 Aug 06
1
patch for compiling on IRIX
...======================================= RCS file: /usr/local/cvsroot/speex/src/Makefile.am,v retrieving revision 1.10 diff -u -r1.10 Makefile.am --- src/Makefile.am 30 May 2003 02:09:30 -0000 1.10 +++ src/Makefile.am 17 Feb 2004 08:59:58 -0000 @@ -18,7 +18,11 @@ bin_PROGRAMS = speexenc speexdec speexenc_SOURCES = speexenc.c wav_io.c -speexenc_LDADD = $(top_builddir)/libspeex/libspeex.la $(OGG_LDFLAGS) $(OGG_LIBS) +speexenc_LDADD = $(top_builddir)/libspeex/libspeex.la \ + $(OGG_LDFLAGS) $(OGG_LIBS) \ + @LTLIBOBJS@ speexdec_SOURCES = speexdec.c wav_io.c -speexdec_LDADD = $(top_builddir)/libspeex/libspe...
2017 May 29
0
[PATCH] Add CMake build script
...PRIVATE + libspeex/kiss_fft.c + libspeex/_kiss_fft_guts.h + libspeex/kiss_fft.h + libspeex/kiss_fftr.c + libspeex/kiss_fftr.h) +endif() +if(VORBIS_PSYCHO) + target_sources(speex PRIVATE + libspeex/vorbis_psy.h + libspeex/vorbis_psy.c) +endif() + +# Programs + +if(NOT DISABLE_BINARIES) + +SET(speexenc_SOURCES + src/speexenc.c + src/wav_io.c + src/skeleton.c) +add_executable(speexenc ${speexenc_SOURCES}) +target_include_directories(speexenc + PRIVATE + $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}> + $<BUILD_INTERFACE:${OGG_INCLUDE_DIRS}> + $<BUILD_INTERFACE:${SPEEXDSP_INCLUDE_DIRS}&g...