Add missing linux dependencies (#10814)

At least one of the dependencies requires cmake to configure the build
process.

On ubuntu libgit2-dev was missing. Debian and derivates do not install
development headers by default.



Release Notes:

- Improved Linux development setup scripts.

Co-authored-by: Max Linke <max.linke88@gmail.com>
This commit is contained in:
Max Linke 2024-04-22 21:05:12 +02:00 committed by GitHub
parent b964fe2ccf
commit e9a965fe81
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,6 +20,7 @@ if [[ -n $apt ]]; then
libssl-dev
libzstd-dev
libvulkan1
libgit2-dev
)
$maysudo "$apt" install -y "${deps[@]}"
exit 0