Files
firezone/rust/gui-client/src-tauri/build.rs
Reactor Scram 4106419ef1 refactor: rename windows-client to gui-client (#3721)
This may cause conflicts with all my other PRs but it has to happen.

```[tasklist]
- [ ] Update test names in branch protection (I don't think I have perms for this)
```
2024-02-22 20:21:27 +00:00

7 lines
206 B
Rust

fn main() -> anyhow::Result<()> {
let win = tauri_build::WindowsAttributes::new();
let attr = tauri_build::Attributes::new().windows_attributes(win);
tauri_build::try_build(attr)?;
Ok(())
}