mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-16 15:51:29 +00:00

When upstream libflashrom contains all the required API upstream we can build this by default.
22 lines
327 B
Bash
Executable File
22 lines
327 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
rm -rf build
|
|
mkdir -p build
|
|
cd build
|
|
meson .. \
|
|
--werror \
|
|
-Dplugin_uefi=false \
|
|
-Dplugin_dell=false \
|
|
-Dplugin_modem_manager=false \
|
|
-Dplugin_synaptics=true \
|
|
-Dplugin_flashrom=true \
|
|
-Dintrospection=true \
|
|
-Dgtkdoc=true \
|
|
-Dpkcs7=false \
|
|
-Dman=true
|
|
ninja-build -v
|
|
ninja-build test -v
|
|
cd ..
|