First working extract with passing tests. Next to rework this so that the demo is separate from the actual library that people would use.
This commit is contained in:
parent
103793204d
commit
f5f5ca6431
2 changed files with 10 additions and 2 deletions
|
@ -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>
|
||||||
|
|
11
meson.build
11
meson.build
|
@ -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…
Add table
Add a link
Reference in a new issue