added a camera class and created a camera that I am not using yet :p
[vkrt] / Makefile
index 70c5194..63fe0e1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -9,12 +9,13 @@ spv = $(subst .vert,.vert.spv,$(vsdr)) \
 bin = rt
 
 dbg = -g
+inc = -Isubmodule/gmath/src -I/usr/include -Isubmodule/libimago/src -I/usr/local/include
 
 CC = gcc
 CXX = g++
 CFLAGS = -pedantic -Wall $(dbg) -MMD
-CXXFLAGS = -pedantic -Wall $(dbg) -MMD
-LDFLAGS =  -lvulkan -lglfw
+CXXFLAGS = -pedantic -Wall $(dbg) -MMD $(opt) $(inc)
+LDFLAGS =  -lvulkan -lglfw -lassimp -limago -lgmath
 
 .PHONY: all
 all: $(bin) $(spv)