X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=Makefile.in;h=73766ac75b31b69765ab4be9da5d4519a63559a9;hp=f5ae1034106ea6998915492d7f0eb834ca8a3e33;hb=18fdebc534adc6b7a4c36b290b01d598bcb671bc;hpb=1cc8eb50a9dbd0ef6c187a57ded6364215367cb5 diff --git a/Makefile.in b/Makefile.in index f5ae103..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.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)