diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-12-05 10:42:35 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-12-05 10:42:35 +0100 |
commit | 9b70ca7b3a1b7bfd3bf434d8b84bde42f5572ca0 (patch) | |
tree | 7078a70f7fc5b590c61386f55f4fbcc67e36b0f3 /Makefile.am | |
parent | 48ec7df0fd27fab05c9918e83a3a7da1cc32d7a0 (diff) | |
download | engine-9b70ca7b3a1b7bfd3bf434d8b84bde42f5572ca0.tar.gz |
added renderer, improved various things
- Added renderer to unify frame buffers
- Added FrameBuffer class as a parent for frame buffers' classes
- Improved formatting in Makefile.am
- Added const modifier in Matrix4's methods
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/Makefile.am b/Makefile.am index c0f1b53..ecfea3a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,22 +1,23 @@ EXTRA_DIST = m4/NOTES SUBDIRS = if ENABLE_TESTS - SUBDIRS += tests + SUBDIRS += tests endif ACLOCAL_AMFLAGS = -Im4 --install bin_PROGRAMS = engine -engine_SOURCES = src/engine.cpp \ - src/fb/chfb.h src/fb/chfb.cpp src/fb/pixfb.h src/fb/pixfb.cpp \ - src/math/vector.h src/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/camera.h src/o3d/camera.cpp \ - src/o3d/scene.h src/o3d/scene.cpp +engine_SOURCES = \ + src/engine.cpp src/renderer.h src/renderer.cpp \ + src/fb/fb.h src/fb/chfb.h src/fb/chfb.cpp src/fb/pixfb.h src/fb/pixfb.cpp \ + src/math/vector.h src/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/camera.h src/o3d/camera.cpp \ + src/o3d/scene.h src/o3d/scene.cpp engine_CPPFLAGS = -Wall -Wextra $(DEPS_CPPFLAGS) engine_LDFLAGS = -Wall -Wextra engine_LDADD = $(DEPS_LIBS) |