Skip to content
Snippets Groups Projects
Commit 5537bde5 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'meson-full-build-option' into 'master'

[meson] Add build_only_emper_dep option

See merge request !368
parents 8c99ee45 c119e77f
No related branches found
No related tags found
1 merge request!368[meson] Add build_only_emper_dep option
Pipeline #78983 failed
......@@ -520,3 +520,9 @@ stack-guard-page:
- .test
variables:
EMPER_STACK_GUARD_PAGE: 'true'
build-only-emper-dep:
extends:
- .build
variables:
EMPER_BUILD_ONLY_EMPER_DEP: 'true'
......@@ -265,8 +265,11 @@ if get_option('io_single_uring')
endif
subdir('emper')
subdir('extra-libs')
subdir('tests')
subdir('apps')
subdir('eval')
subdir('doc')
if not get_option('build_only_emper_dep')
subdir('extra-libs')
subdir('tests')
subdir('apps')
subdir('eval')
endif
......@@ -5,6 +5,12 @@ option(
description: 'Control when the bundled dependencies are used',
value: 'automatic',
)
option(
'build_only_emper_dep',
type: 'boolean',
value: false,
description: 'If enabled, build only emper_dep. Otherwise, the default, build everything.'
)
option(
'userspace_rcu',
type: 'boolean',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment