]> git.sesse.net Git - movit/commitdiff
Add a test for DeconvolutionSharpenEffect. Not completely done yet, but basic functio...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 13 Oct 2012 01:12:20 +0000 (03:12 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 13 Oct 2012 01:12:20 +0000 (03:12 +0200)
Makefile

index 1d35c9d5756cf30b5a904a498d8e8db5721268df..1797de0086cb2c05b6a8fa88be6d452f44199436 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ LDFLAGS += -fprofile-arcs -ftest-coverage
 endif
 
 DEMO_OBJS=demo.o
-TESTS=effect_chain_test mix_effect_test gamma_expansion_effect_test gamma_compression_effect_test saturation_effect_test
+TESTS=effect_chain_test mix_effect_test gamma_expansion_effect_test gamma_compression_effect_test saturation_effect_test deconvolution_sharpen_effect_test
 
 # Core.
 LIB_OBJS=util.o widgets.o effect.o effect_chain.o
@@ -61,6 +61,8 @@ gamma_compression_effect_test: gamma_compression_effect_test.o $(TEST_OBJS) libm
        $(CXX) -o $@ $^ $(LDFLAGS)
 saturation_effect_test: saturation_effect_test.o $(TEST_OBJS) libmovit.a
        $(CXX) -o $@ $^ $(LDFLAGS)
+deconvolution_sharpen_effect_test: deconvolution_sharpen_effect_test.o $(TEST_OBJS) libmovit.a
+       $(CXX) -o $@ $^ $(LDFLAGS)
 
 OBJS=$(DEMO_OBJS) $(LIB_OBJS) $(TEST_OBJS) $(TESTS:=.o)