forked from flybywiresim/aircraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 691 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[workspace]
members = [
"fbw-a32nx/src/wasm/systems/a320_systems",
"fbw-a32nx/src/wasm/systems/a320_systems_wasm",
"fbw-a380x/src/wasm/systems/a380_systems",
"fbw-a380x/src/wasm/systems/a380_systems_wasm",
"fbw-a32nx/src/wasm/systems/a320_hydraulic_simulation_graphs",
"fbw-common/src/wasm/systems/systems",
"fbw-common/src/wasm/systems/systems_wasm",
]
[profile.release]
lto = true
strip = true
[profile.test]
# We enable some basic optimization to prevent stack overflows during testing (flybywiresim/a32nx#7631)
# However, if this interferes with your ability to debug locally you can disable it here
opt-level=1
lto = true
debug-assertions=true
debug=true