X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=Makefile.in;h=73766ac75b31b69765ab4be9da5d4519a63559a9;hp=d1eb16533be13670b6d5ac212edc9097f3870c57;hb=c4f0d4e876a8177db5738596f22349e030e0a1dc;hpb=4e1cc130959901f8be5566eacf7ecadbc7e0e9b2 diff --git a/Makefile.in b/Makefile.in index d1eb165..73766ac 100644 --- a/Makefile.in +++ b/Makefile.in @@ -11,7 +11,7 @@ with_demo_app = @with_demo_app@ CC=@CC@ CXX=@CXX@ CXXFLAGS=-Wall @CXXFLAGS@ -I$(GTEST_DIR)/include @Eigen3_CFLAGS@ @GLEW_CFLAGS@ -LDFLAGS=@GLEW_LIBS@ @SDL_LIBS@ +LDFLAGS=@GLEW_LIBS@ @SDL_LIBS@ -lpthread DEMO_LDFLAGS=@SDL_image_LIBS@ -lrt -lpthread @libpng_LIBS@ RANLIB=ranlib INSTALL=install @@ -49,6 +49,7 @@ TESTED_EFFECTS += padding_effect TESTED_EFFECTS += resample_effect TESTED_EFFECTS += dither_effect TESTED_EFFECTS += deconvolution_sharpen_effect +TESTED_EFFECTS += fft_pass_effect UNTESTED_EFFECTS = sandbox_effect UNTESTED_EFFECTS += mirror_effect @@ -61,7 +62,7 @@ EFFECTS = $(TESTED_EFFECTS) $(UNTESTED_EFFECTS) # Unit tests. TESTS=effect_chain_test $(TESTED_INPUTS:=_test) $(TESTED_EFFECTS:=_test) -LIB_OBJS=effect_util.o util.o widgets.o effect.o effect_chain.o init.o $(INPUTS:=.o) $(EFFECTS:=.o) +LIB_OBJS=effect_util.o util.o widgets.o effect.o effect_chain.o init.o resource_pool.o $(INPUTS:=.o) $(EFFECTS:=.o) # Default target: all: libmovit.a $(TESTS) @@ -122,7 +123,7 @@ coverage: check lcov --remove movit.info '*_test.cpp' '*/test_util.{cpp,h}' -o movit.info genhtml -o coverage movit.info -HDRS = effect_chain.h effect_util.h effect.h input.h image_format.h init.h util.h defs.h +HDRS = effect_chain.h effect_util.h effect.h input.h image_format.h init.h util.h defs.h resource_pool.h HDRS += $(INPUTS:=.h) HDRS += $(EFFECTS:=.h)