5 lines
151 B
Makefile
5 lines
151 B
Makefile
a.out: *.cpp *.h camera/*.cpp camera/*.h
|
|
clang++ -std=c++17 -g -o a.out main.cpp \
|
|
camera/Camera.cpp Track.cpp Xml.cpp \
|
|
-lGL -lGLU -lglut -lstdc++fs
|