Skip to content

Commit

Permalink
fix; migrate lto and strip to workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
AZProductions authored Dec 28, 2023
2 parents a9dba06 + c356deb commit cb7a2df
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
12 changes: 11 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
resolver = "2"

[workspace]
members = [
"crates/toybox_c1200",
"crates/xtask"
]
resolver = "2"

[profile.release]
lto = "thin"
strip = "symbols"

[profile.profiling]
inherits = "release"
debug = true
strip = "none"
9 changes: 0 additions & 9 deletions crates/toybox_c1200/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,3 @@ nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", features = ["a
# Uncomment the below line to disable the on-by-default VST3 feature to remove
# the GPL compatibility requirement
# nih_plug = { git = "https://github.com/robbert-vdh/nih-plug.git", default_features = false, features = ["assert_process_allocs"] }

[profile.release]
lto = "thin"
strip = "symbols"

[profile.profiling]
inherits = "release"
debug = true
strip = "none"

0 comments on commit cb7a2df

Please sign in to comment.