Merge branch 'wasm_demos' of https://gitlab.com/mmcomando/bubel-ecs.git into wasm_demos

This commit is contained in:
Mergul 2021-03-13 15:05:00 +01:00
commit ef12bce88b
32 changed files with 1573 additions and 1538 deletions

View file

@ -3,10 +3,12 @@ project('decs', 'd', version : '0.5.0')
# Options
betterC_opt = get_option('betterC')
BuildDemos_opt = get_option('BuildDemos')
BuildTests_opt = get_option('BuildTests')
LTO_otp = get_option('LTO')
summary('betterC enabled', betterC_opt)
summary('build demos', BuildDemos_opt)
summary('build tests', BuildTests_opt)
summary('LTO enabled', LTO_otp)
meson_minimum_version = '>=0.57.1'
@ -71,7 +73,9 @@ decs_dep = declare_dependency(
)
# Tests
subdir('tests')
if BuildTests_opt
subdir('tests')
endif
# Demos
if BuildDemos_opt