Skip to content

Instantly share code, notes, and snippets.

@muhleder
Created September 14, 2023 06:16
Show Gist options
  • Save muhleder/10749ba741b477297f0a9b47161a89fe to your computer and use it in GitHub Desktop.
Save muhleder/10749ba741b477297f0a9b47161a89fe to your computer and use it in GitHub Desktop.
Build script to add clang compilers to codemagic VM for building flutter apps with rive on windows
wget https://aka.ms/vs/17/release/vs_community.exe;
$process = Start-Process -FilePath vs_community.exe -ArgumentList "modify", "--productId", "Microsoft.VisualStudio.Product.Community", "--channelId", "VisualStudio.17.Release", " --add", " Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset", "Microsoft.VisualStudio.Component.VC.Llvm.Clang", "--passive", "--wait" -Wait -PassThru;
Write-Output $process.ExitCode;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment