initial project setup

This commit is contained in:
Haze Weathers 2025-09-16 11:49:55 -06:00
commit 963c797594
8 changed files with 4309 additions and 0 deletions

1
xtask/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

7
xtask/Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "xtask"
version = "0.1.0"
edition = "2024"
[dependencies]
nih_plug_xtask = { git = "https://github.com/robbert-vdh/nih-plug.git", version = "0.1.0" }

3
xtask/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() -> nih_plug_xtask::Result<()> {
nih_plug_xtask::main()
}