Skip to content

Commit

Permalink
fix: add vulkan validation layers to the system deps
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Feb 6, 2024
1 parent eda1e3b commit 4669cc7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions script/linux
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ if [[ -n $apt ]]; then
deps=(
libasound2-dev
libfontconfig-dev
vulkan-validationlayers*
)
$maysudo "$apt" install -y "${deps[@]}"
exit 0
Expand All @@ -40,6 +41,7 @@ if [[ -n $dnf ]]; then
deps=(
alsa-lib-devel
fontconfig-devel
vulkan-validation-layers
)
$maysudo "$dnf" install -y "${deps[@]}"
exit 0
Expand All @@ -52,6 +54,7 @@ if [[ -n $pacman ]]; then
deps=(
alsa-lib
fontconfig
vulkan-validation-layers
)
$maysudo "$pacman" -S --noconfirm "${deps[@]}"
exit 0
Expand Down

0 comments on commit 4669cc7

Please sign in to comment.