Initial Commit

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2021-01-23 00:00:33 +02:00
commit b95b0d4a6c
4 changed files with 63 additions and 0 deletions

21
meson.build Normal file
View File

@@ -0,0 +1,21 @@
project('evol-sandbox', 'c',
version : '0.1',
default_options : ['warning_level=3'])
evol_dep = dependency('evol')
subproject('evmod_glfw')
configure_file(input: 'config.lua', output: 'config.lua', copy: true)
exe = executable(
'sandbox',
'src/main.c',
dependencies: [
evol_dep,
],
install : true,
export_dynamic: true,
)
test('basic', exe)