Initial Commit
Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
21
meson.build
Normal file
21
meson.build
Normal 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)
|
||||
Reference in New Issue
Block a user