From f5f5ca6431cd72caff22e34ed035883a2ad87122 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Mon, 5 May 2025 12:10:27 -0400 Subject: [PATCH] First working extract with passing tests. Next to rework this so that the demo is separate from the actual library that people would use. --- guecs.hpp | 1 - meson.build | 11 ++++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/guecs.hpp b/guecs.hpp index cce73e8..38966d8 100644 --- a/guecs.hpp +++ b/guecs.hpp @@ -6,7 +6,6 @@ #include #include #include -#include "events.hpp" #include #include #include diff --git a/meson.build b/meson.build index fd2e3d7..902d2a4 100644 --- a/meson.build +++ b/meson.build @@ -78,12 +78,21 @@ dependencies += [ ] sources = [ + 'config.cpp', 'dbc.cpp', - 'lel.cpp' + 'guecs.cpp', + 'lel.cpp', + 'shaders.cpp', + 'sound.cpp', + 'textures.cpp', ] executable('runtests', sources + [ 'tests/lel.cpp', + 'tests/guecs.cpp', + 'tests/shaders.cpp', + 'tests/sound.cpp', + 'tests/textures.cpp', ], cpp_args: cpp_args, link_args: link_args,