Mercurial > hg > qm-dsp
diff tests/Makefile @ 191:857ca50ca25f
Add DCT
| author | Chris Cannam |
|---|---|
| date | Wed, 07 Oct 2015 09:55:35 +0100 |
| parents | e4a57215ddee |
| children | 3780b91297ea |
line wrap: on
line diff
--- a/tests/Makefile Mon Sep 28 12:33:17 2015 +0100 +++ b/tests/Makefile Wed Oct 07 09:55:35 2015 +0100 @@ -1,11 +1,11 @@ CFLAGS := -I.. $(CFLAGS) -CXXFLAGS := -I.. -Wall -Wextra -g $(CXXFLAGS) +CXXFLAGS := -I.. -Wall -Wextra -std=c++11 -g $(CXXFLAGS) LDFLAGS := $(LDFLAGS) -lboost_unit_test_framework -lpthread LIBS := ../libqm-dsp.a -TESTS := test-mathutilities test-window test-fft test-pvoc test-resampler test-medianfilter +TESTS := test-mathutilities test-window test-fft test-dct test-pvoc test-resampler test-medianfilter VG := valgrind -q @@ -24,6 +24,9 @@ test-fft: TestFFT.o $(LIBS) $(CXX) -o $@ $^ $(LDFLAGS) +test-dct: TestDCT.o $(LIBS) + $(CXX) -o $@ $^ $(LDFLAGS) + test-pvoc: TestPhaseVocoder.o $(LIBS) $(CXX) -o $@ $^ $(LDFLAGS) @@ -34,6 +37,7 @@ TestMedianFilter.o: $(LIBS) TestWindow.o: $(LIBS) TestFFT.o: $(LIBS) +TestDCT.o: $(LIBS) TestPhaseVocoder.o: $(LIBS) TestResampler.o: $(LIBS)
