VNC-127 Disable shared library builds for TBB

This commit is contained in:
El 2025-05-10 15:24:01 +05:00
parent d144f5a5e0
commit ad95259fda
No known key found for this signature in database
GPG key ID: EB3F4C9EA29CDE59

View file

@ -4,7 +4,7 @@ set -euo pipefail
build_and_install() {
cmake -B build -DCMAKE_INSTALL_PREFIX=/usr/local \
-DTBB_TEST=OFF -GNinja .
-DTBB_TEST=OFF -DBUILD_SHARED_LIBS=OFF -GNinja .
ninja -C build install
}