Added scripting module to sandbox

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2021-04-17 21:50:10 +02:00
parent 7c2fc03a5c
commit 8c3c289b93
2 changed files with 11 additions and 0 deletions

View File

@@ -13,10 +13,12 @@ evol_dep = dependency('evol')
subproject('evmod_glfw')
subproject('evmod_ecs')
subproject('evmod_physics')
subproject('evmod_script')
evmodglfw_dep = dependency('evmod_glfw')
evmodecs_dep = dependency('evmod_ecs')
evmodphysics_dep = dependency('evmod_physics')
evmodscript_dep = dependency('evmod_script')
# Setup build directory
subdir('buildscripts')
@@ -26,9 +28,11 @@ sandbox_exe = executable(
'src/main.c',
dependencies: [
evol_dep,
evmodglfw_dep,
evmodecs_dep,
evmodphysics_dep,
evmodscript_dep,
],
install : true,
)