Browse Source

libfdt: Add static lib to meson build

The meson build is not building the static libfdt, so add it.

Signed-off-by: Rob Herring <robh@kernel.org>
Message-Id: <20211111003329.2347536-1-robh@kernel.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
Rob Herring 3 years ago committed by David Gibson
parent
commit
5216f3f1bb
  1. 5
      libfdt/meson.build

5
libfdt/meson.build

@ -24,6 +24,11 @@ libfdt = library( @@ -24,6 +24,11 @@ libfdt = library(
install: true,
)

libfdt_a = static_library(
'fdt', sources,
install: true,
)

libfdt_inc = include_directories('.')

libfdt_dep = declare_dependency(

Loading…
Cancel
Save