From b08113d11d181cbcca9103d8f67c60b9905ec972 Mon Sep 17 00:00:00 2001 From: Martin Miller Date: Mon, 27 Mar 2017 12:55:09 -0500 Subject: Add test_camera --- tests/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile index 636f2f3..37d1687 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -6,6 +6,9 @@ CXXFLAGS+=$(shell pkg-config --cflags eigen3 yaml-cpp) LIBS+=$(shell pkg-config --libs eigen3 yaml-cpp) #LIBS+=$(shell pkg-config --libs opencv) +test_camera: test_camera.o ../src/camera.o + $(CXX) -o $@ $^ $(CXXFLAGS) ${LIBS} + test_feature: ${OBJECT} $(CXX) -o $@ $^ $(CXXFLAGS) ${LIBS} @@ -14,5 +17,5 @@ test_feature: ${OBJECT} .PHONY: clean clean: - rm -f test_feature *.o src/*.o + rm -f test_camera test_feature *.o src/*.o -- cgit v1.1