diff --git a/meson.build b/meson.build index b170f39be1c..9330302b21b 100644 --- a/meson.build +++ b/meson.build @@ -239,6 +239,17 @@ if is_cross_build endif endif +# libbmd library (static or dynamic, based on the user's choice) +libbmd = static_library( + 'blackmagicdebug', + c_args: [ + '-DPC_HOSTED=1', + '-DHOSTED_BMP_ONLY=1', + ], + dependencies: [libbmd_core], + native: is_cross_build, +) + # We report this at the end of the configuration, so it's easier to spot warning( '''The meson build system is experimental and not yet fully supported. Please use the Makefile build system instead.