Commit 79b3a735 for libheif

commit 79b3a73501ecb54901ce41967e9a57a458fa2c77
Author: Dirk Farin <dirk.farin@gmail.com>
Date:   Mon Jan 26 11:36:55 2026 +0100

    use verbose cmake build output to see full command lines

diff --git a/scripts/run-ci.sh b/scripts/run-ci.sh
index b1e214e3..7461fdf2 100755
--- a/scripts/run-ci.sh
+++ b/scripts/run-ci.sh
@@ -164,7 +164,7 @@ fi
 if [ -z "$EMSCRIPTEN_VERSION" ] && [ -z "$CHECK_LICENSES" ] && [ -z "$TARBALL" ] ; then
     echo "Building libheif ..."
     cmake . $CMAKE_OPTIONS
-    make -j $(nproc)
+    make VERBOSE=1 -j $(nproc)
     if [ "$CURRENT_OS" = "linux" ] && [ -z "$MINGW" ] && [ -z "$FUZZER" ] && [ ! -z "$TESTS" ] ; then
         echo "Running tests ..."
         make test
@@ -275,7 +275,7 @@ if [ ! -z "$TARBALL" ]; then
     mkdir build
     pushd build
     cmake .. --preset=release
-    make -j $(nproc)
+    make VERBOSE=1 -j $(nproc)
     popd
 fi