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_glfw')
subproject('evmod_ecs') subproject('evmod_ecs')
subproject('evmod_physics') subproject('evmod_physics')
subproject('evmod_script')
evmodglfw_dep = dependency('evmod_glfw') evmodglfw_dep = dependency('evmod_glfw')
evmodecs_dep = dependency('evmod_ecs') evmodecs_dep = dependency('evmod_ecs')
evmodphysics_dep = dependency('evmod_physics') evmodphysics_dep = dependency('evmod_physics')
evmodscript_dep = dependency('evmod_script')
# Setup build directory # Setup build directory
subdir('buildscripts') subdir('buildscripts')
@@ -26,9 +28,11 @@ sandbox_exe = executable(
'src/main.c', 'src/main.c',
dependencies: [ dependencies: [
evol_dep, evol_dep,
evmodglfw_dep, evmodglfw_dep,
evmodecs_dep, evmodecs_dep,
evmodphysics_dep, evmodphysics_dep,
evmodscript_dep,
], ],
install : true, install : true,
) )

View File

@@ -0,0 +1,7 @@
[wrap-git]
directory = evmod_script
url = https://github.com/evol3D/evol-mod-scripting.git
revision = master
[provide]
dependency_names = evmod_script