X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=Makefile;h=e93f0a5809309975d7e808722ba769cf96600abc;hb=ac5f7aa64ab690120a71fe45ee4b9bbc56610191;hp=41f0de44b172874c5d7efcea139fccb95a3418e5;hpb=f2841411054c60e47181136aafc86b9982bf573e;p=movit diff --git a/Makefile b/Makefile index 41f0de4..e93f0a5 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,7 @@ TESTS += gamma_expansion_effect_test TESTS += gamma_compression_effect_test TESTS += saturation_effect_test TESTS += deconvolution_sharpen_effect_test +TESTS += blur_effect_test # Core. LIB_OBJS=util.o widgets.o effect.o effect_chain.o @@ -70,6 +71,8 @@ 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) +blur_effect_test: blur_effect_test.o $(TEST_OBJS) libmovit.a + $(CXX) -o $@ $^ $(LDFLAGS) OBJS=$(DEMO_OBJS) $(LIB_OBJS) $(TEST_OBJS) $(TESTS:=.o)