Module event import

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2021-02-08 05:28:45 +02:00
parent 11a4989430
commit 3d85d1be6a
3 changed files with 23 additions and 1 deletions

View File

@@ -4,7 +4,10 @@ project('evol-sandbox', 'c',
evol_dep = dependency('evol')
subproject('evmod_glfw')
# subproject('evmod_glfw')
evmodglfw_dep = dependency('evmod_glfw')
sandbox_incdir = []
configure_file(input: 'config.lua', output: 'config.lua', copy: true)
@@ -13,8 +16,11 @@ exe = executable(
'src/main.c',
dependencies: [
evol_dep,
evmodglfw_dep,
],
install : true,
include_directories: sandbox_incdir,
c_args: ['-fms-extensions']
)
test('basic', exe)