summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Miller2017-03-19 22:13:51 -0500
committerMartin Miller2017-03-19 22:13:51 -0500
commit2a08bf8b469131e82aa259a3be65a6b5dc8c1be0 (patch)
treeba59984fd040d38f6ae1eaa567c84661afd8e461 /Makefile
parentb0d5345cb36ad7dc82eb6fccd9521d1f09d4f6b7 (diff)
downloadrefslam-2a08bf8b469131e82aa259a3be65a6b5dc8c1be0.zip
refslam-2a08bf8b469131e82aa259a3be65a6b5dc8c1be0.tar.gz
Add Camera class
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b7f2864..eca55b2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,9 @@
-OBJECT=src/main.o src/body.o src/state.o src/feature.o
+OBJECT=src/main.o src/body.o src/state.o src/feature.o src/camera.o
CXXFLAGS+=-O2 -march=native -std=c++11 -pedantic-errors
#CXXFLAGS+=-g
-CXXFLAGS+=$(shell pkg-config --cflags eigen3)
+CXXFLAGS+=$(shell pkg-config --cflags eigen3 yaml-cpp)
#CXXFLAGS+=$(shell pkg-config --cflags opencv)
+LIBS+=$(shell pkg-config --libs eigen3 yaml-cpp)
#LIBS+=$(shell pkg-config --libs opencv)
slam: ${OBJECT}