6 lines
197 B
Makefile
6 lines
197 B
Makefile
a.out: *.cpp *.h camera/*.cpp camera/*.h
|
|
clang++ -std=c++14 -g -o a.out main.cpp \
|
|
camera/Camera.cpp Track.cpp Xml.cpp \
|
|
-lGL -lGLU -lglut -lstdc++fs \
|
|
#-fsanitize=address -fno-omit-frame-pointer
|