Working proof of concept

This commit is contained in:
King_DuckZ 2025-04-02 20:41:48 +01:00
commit 3dcfcc7f0c
6 changed files with 394 additions and 0 deletions

9
src/meson.build Normal file
View file

@ -0,0 +1,9 @@
executable(meson.project_name(),
'main.cpp',
'parser.cpp',
dependencies: [
boost_dep,
libstriezel_dep,
],
install: true,
)