First working extract with passing tests. Next to rework this so that the demo is separate from the actual library that people would use.

main
Zed A. Shaw 5 days ago
parent 103793204d
commit f5f5ca6431
  1. 1
      guecs.hpp
  2. 11
      meson.build

@ -6,7 +6,6 @@
#include <memory> #include <memory>
#include <SFML/Graphics.hpp> #include <SFML/Graphics.hpp>
#include <functional> #include <functional>
#include "events.hpp"
#include <any> #include <any>
#include <queue> #include <queue>
#include <typeindex> #include <typeindex>

@ -78,12 +78,21 @@ dependencies += [
] ]
sources = [ sources = [
'config.cpp',
'dbc.cpp', 'dbc.cpp',
'lel.cpp' 'guecs.cpp',
'lel.cpp',
'shaders.cpp',
'sound.cpp',
'textures.cpp',
] ]
executable('runtests', sources + [ executable('runtests', sources + [
'tests/lel.cpp', 'tests/lel.cpp',
'tests/guecs.cpp',
'tests/shaders.cpp',
'tests/sound.cpp',
'tests/textures.cpp',
], ],
cpp_args: cpp_args, cpp_args: cpp_args,
link_args: link_args, link_args: link_args,

Loading…
Cancel
Save