diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-02-12 22:15:56 +0100 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-02-12 22:15:56 +0100 | 
| commit | faa4ea3d5997590a235f90a25522a36b39930490 (patch) | |
| tree | 5552621da28178fbf688924f57d0d8322247224c | |
| parent | 9cc885fe6df62f698b72e665ab47f4188db25700 (diff) | |
Add new LV2 unit test.
| -rw-r--r-- | test/Makefile.am | 12 | 
1 files changed, 10 insertions, 2 deletions
| diff --git a/test/Makefile.am b/test/Makefile.am index e43a6ba..779e4f4 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,7 +1,7 @@  # Rules for the test code (use `make check` to execute)  include $(top_srcdir)/src/Makefile.am.drumgizmo -TESTS = engine gui resampler +TESTS = engine gui resampler lv2  check_PROGRAMS = $(TESTS) @@ -29,4 +29,12 @@ resampler_LDFLAGS = $(ZITA_LIBS) $(SAMPLERATE_LIBS) $(CPPUNIT_LIBS)  resampler_SOURCES = \  	$(top_srcdir)/src/chresampler.cc \  	test.cc \ -	resampler.cc
\ No newline at end of file +	resampler.cc + +lv2_CXXFLAGS = -DOUTPUT=\"lv2\" $(CPPUNIT_CFLAGS) \ +	 -I/usr/include/lilv-0 -I/usr/include/serd-0 +lv2_LDFLAGS = $(CPPUNIT_LIBS) -llilv-0 -lserd-0 -lcrypto +lv2_SOURCES = \ +	test.cc \ +	lv2_test_host.cc \ +	lv2.cc | 
