mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-22 14:41:47 +00:00
build/meson: Explicitly depend on generated binding header
fixes header not being generated on alpine
This commit is contained in:
parent
b77630ba57
commit
def0bef533
|
@ -35,5 +35,6 @@ lib_aux_generated_bindings = static_library(
|
||||||
|
|
||||||
aux_generated_bindings = declare_dependency(
|
aux_generated_bindings = declare_dependency(
|
||||||
include_directories: aux_include,
|
include_directories: aux_include,
|
||||||
|
sources: [generated_bindings_h],
|
||||||
link_with: lib_aux_generated_bindings,
|
link_with: lib_aux_generated_bindings,
|
||||||
)
|
)
|
||||||
|
|
|
@ -14,7 +14,7 @@ lib_st_ovrd = static_library(
|
||||||
st_include, # Sigh debian meson requires this.
|
st_include, # Sigh debian meson requires this.
|
||||||
xrt_include,
|
xrt_include,
|
||||||
],
|
],
|
||||||
dependencies: aux_util,
|
dependencies: [aux_util, aux_generated_bindings],
|
||||||
c_args: compile_args,
|
c_args: compile_args,
|
||||||
cpp_args: compile_args,
|
cpp_args: compile_args,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue