sandstone/engine/sandstone.code-workspace
2023-03-07 08:47:50 +00:00

32 lines
720 B
Plaintext

{
"folders": [
{
"path": ".",
"name": "Root"
},
{
"path": "arm9",
"name": "ARM9"
},
{
"path": "arm7",
"name": "ARM7"
}
],
"settings": {
// needed for no-std, prevents the "can't find crate for 'test'" issue
"rust-analyzer.check.allTargets": false,
"rust-analyzer.check.extraArgs": [
"--lib"
],
"rust-analyzer.cargo.target": "thumbv5te-none-eabi",
"rust-analyzer.linkedProjects": [
"arm9/Cargo.toml",
"arm7/Cargo.toml"
],
"files.associations": {
"*.s": "arm"
}
}
}