feat(bundler): bundle additional gstreamer files, closes #4092 (#4271)

Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
Fabian-Lars
2022-06-10 21:20:37 +02:00
committed by GitHub
parent f6205afc0d
commit d335fae92c
7 changed files with 76 additions and 2 deletions

View File

@@ -337,6 +337,9 @@ pub fn command(options: Options) -> Result<()> {
}
}
}
if config_.tauri.bundle.appimage.bundle_media_framework {
std::env::set_var("APPIMAGE_BUNDLE_GSTREAMER", "1");
}
let bundles = bundle_project(settings).with_context(|| "failed to bundle project")?;