From 788586df043bdb1f055ab0e74560c2af9d625203 Mon Sep 17 00:00:00 2001 From: dragonmux Date: Tue, 28 Nov 2023 02:37:05 +0000 Subject: [PATCH] meson: Defined the libblackmagicdebug library target --- meson.build | 11 +++++++++++ 1 file changed, 11 insertions(+) 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.