1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-29 00:30:23 +01:00

Provide an easy way to build mod-nyq-bench

mkdir build
cd build
../configure
make
make modules
./audacity
This commit is contained in:
lllucius@gmail.com
2014-11-01 09:28:05 +00:00
parent 8020f68691
commit bdb3aa328b
8 changed files with 18850 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
pkglib_LTLIBRARIES = mod-nyq-bench.la
mod_nyq_bench_la_CPPFLAGS = $(WX_CXXFLAGS) -I$(top_srcdir)/../../include -I$(top_srcdir)/../../src -I$(top_builddir)/../../src -I$(top_srcdir)/../portaudio-v19/include -I$(top_srcdir)/../portmixer/include -I$(top_srcdir)/../libnyquist
mod_nyq_bench_la_LIBADD = $(WX_LIBS)
mod_nyq_bench_la_LDFLAGS = -module
mod_nyq_bench_la_SOURCES = \
NyqBench.cpp \
NyqBench.h
$(NULL)