1b8fd21eba
The verify-overlay-integrity.sh script is now active. It runs at the start of canonical builds and auto-repairs via apply-patches.sh on failure. Restored missing symlinks for: - recipes/core/base/redox.patch - recipes/core/bootloader/redox.patch - recipes/core/bootloader/P2-live-preload-guard.patch - recipes/core/bootloader/P3-uefi-live-image-safe-read.patch - recipes/wip/wayland/qt6-wayland-smoke (incorrect relative path) Created empty stub at local/patches/base/redox.patch so the relibc/base symlinks can be re-created by apply-patches.sh. Overlay integrity now reports: 365 recipe symlinks, 0 broken 9 patch symlinks, 0 broken 9 critical patches, 0 missing 10 critical configs, 0 missing
23 lines
464 B
Meson
23 lines
464 B
Meson
# SPDX-FileCopyrightText: 2022 Endless OS Foundation, LLC
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
project('gvdb', 'c',
|
|
version: '0.0',
|
|
meson_version: '>=1.1',
|
|
)
|
|
|
|
libgvdb_sources = files(
|
|
'gvdb/gvdb-builder.c',
|
|
'gvdb/gvdb-reader.c',
|
|
)
|
|
|
|
gvdb_dep = declare_dependency(
|
|
sources: libgvdb_sources,
|
|
include_directories: include_directories('.'),
|
|
)
|
|
meson.override_dependency('gvdb', gvdb_dep)
|
|
|
|
if get_option('tests')
|
|
subdir('gvdb/tests')
|
|
endif
|