]> git.sesse.net Git - movit/blobdiff - Makefile.in
Add a shared ResourcePool to share resources between EffectChains.
[movit] / Makefile.in
index 4656959708cc71f6286377c5824b8c026e909e15..ec5919d8b04f448dcd057c36369c2de9c1d32171 100644 (file)
@@ -54,13 +54,14 @@ UNTESTED_EFFECTS = sandbox_effect
 UNTESTED_EFFECTS += mirror_effect
 UNTESTED_EFFECTS += resize_effect
 UNTESTED_EFFECTS += vignette_effect
+UNTESTED_EFFECTS += multiply_effect
 
 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)
@@ -121,7 +122,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)