Added asset module to sandbox

This commit is contained in:
J3oss
2021-05-11 16:12:17 +02:00
parent 9dc81756a8
commit bdfb14228f
3 changed files with 19 additions and 1 deletions

View File

@@ -23,11 +23,13 @@ subproject('evmod_glfw')
subproject('evmod_ecs')
subproject('evmod_physics')
subproject('evmod_script')
subproject('evmod_assetsystem')
evmodglfw_dep = dependency('evmod_glfw')
evmodecs_dep = dependency('evmod_ecs')
evmodphysics_dep = dependency('evmod_physics')
evmodscript_dep = dependency('evmod_script')
evmod_assetsystem_dep = dependency('evmod_assetsystem')
# Setup build directory
subdir('buildscripts')
@@ -42,6 +44,7 @@ sandbox_exe = executable(
evmodecs_dep,
evmodphysics_dep,
evmodscript_dep,
evmod_assetsystem_dep
],
install : true,
c_args: sandbox_args,