diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-11-26 17:58:30 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-11-26 17:58:30 +0100 |
commit | e730e8bdc69ef89dfa28d2606d260cb8b72f4740 (patch) | |
tree | c219050793df6d1d777e94ea3c887027cde7451e /Makefile.am | |
parent | 5a1d67d1797a3db874e44500e13237d676843185 (diff) | |
download | engine-e730e8bdc69ef89dfa28d2606d260cb8b72f4740.tar.gz |
added scenes, camera and meshes
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 7f0c5bf..82c6e3d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,9 +7,12 @@ engine_SOURCES = src/engine.cpp \ src/fb/chfb.h src/fb/chfb.cpp src/fb/pixfb.h src/fb/pixfb.cpp \ src/math/math_vector.h src/math/math_vector.cpp \ src/math/mat4.h src/math/mat4.cpp \ + src/o3d/mesh.h src/o3d/mesh.cpp src/o3d/tri_vertex.h \ src/o3d/obj3d.h src/o3d/obj3d.cpp src/o3d/tri_vertex.h \ src/o3d/tri_vertex.cpp src/o3d/vertex.h src/o3d/vertex.cpp \ - src/o3d/vertex_data.h src/o3d/vertex_data.cpp + src/o3d/vertex_data.h src/o3d/vertex_data.cpp \ + src/o3d/camera.h src/o3d/camera.cpp \ + src/o3d/scene.h src/o3d/scene.cpp engine_LDFLAGS = -Wall -Wextra engine_LDADD = $(DEPS_LIBS) |