mirror of
https://github.com/QuinnPainter/sandstone.git
synced 2025-06-19 03:25:37 -04:00
32 lines
720 B
Plaintext
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"
|
|
}
|
|
}
|
|
}
|