From eb0bbadb61fe0b76cd12a3d991ec22b1f4854dc4 Mon Sep 17 00:00:00 2001 From: Stephen Buchanan Date: Mon, 23 Dec 2024 15:44:19 +0100 Subject: [PATCH] try to install lib alsa for linux build --- dist-workspace.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dist-workspace.toml b/dist-workspace.toml index ff38743..7bf2b30 100644 --- a/dist-workspace.toml +++ b/dist-workspace.toml @@ -12,10 +12,18 @@ installers = ["shell", "powershell", "homebrew", "msi"] # A GitHub repo to push Homebrew formulas to tap = "RandomStudio/homebrew-tap" # Target platforms to build apps for (Rust target-triple syntax) -targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] +targets = [ + "aarch64-apple-darwin", + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu", + "x86_64-pc-windows-msvc", +] # Path that installers should place binaries in install-path = "CARGO_HOME" # Publish jobs to run in CI publish-jobs = ["homebrew"] # Whether to install an updater program install-updater = false + +[dist.dependencies.apt] +libasound2-dev = "*"