partway through fixes, macro system needs resdesign
Some checks failed
Rust / build (push) Has been cancelled
Some checks failed
Rust / build (push) Has been cancelled
This commit is contained in:
@@ -4,6 +4,72 @@
|
||||
"path": "."
|
||||
}
|
||||
],
|
||||
"tasks": {
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build All",
|
||||
"command": "cargo",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"type": "shell",
|
||||
"args": ["build"],
|
||||
"problemMatcher": [
|
||||
"$rustc"
|
||||
],
|
||||
"presentation": {
|
||||
"reveal": "always"
|
||||
},
|
||||
"group": "build"
|
||||
}
|
||||
]
|
||||
},
|
||||
"launch": {
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "(LLDB) Launch",
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "Build All",
|
||||
"env": {
|
||||
"ORCHID_EXTENSIONS": "target/debug/orchid_std",
|
||||
"ORCHID_DEFAULT_SYSTEMS": "orchid::std;orchid::macros",
|
||||
},
|
||||
"cwd": "${workspaceRoot}",
|
||||
"program": "${workspaceRoot}/target/debug/orcx.exe",
|
||||
"args": [
|
||||
"--logs=stderr",
|
||||
"--logs=debug>stderr",
|
||||
"--logs=msg>stderr",
|
||||
"exec",
|
||||
"1 + 1"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "(Windows) Launch",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"requireExactSource": true,
|
||||
"preLaunchTask": "Build All",
|
||||
"environment": [
|
||||
{ "name": "ORCHID_EXTENSIONS", "value": "target/debug/orchid_std" },
|
||||
{ "name": "ORCHID_DEFAULT_SYSTEMS", "value": "orchid::std;orchid::macros" },
|
||||
],
|
||||
"cwd": "${workspaceRoot}",
|
||||
"program": "${workspaceRoot}/target/debug/orcx.exe",
|
||||
"args": [
|
||||
"--logs=stderr",
|
||||
"--logs=debug>stderr",
|
||||
"--logs=msg>stderr",
|
||||
"exec",
|
||||
"1 + 1"
|
||||
]
|
||||
}
|
||||
],
|
||||
"compounds": []
|
||||
},
|
||||
"settings": {
|
||||
"[markdown]": {
|
||||
// markdown denotes line breaks with trailing space
|
||||
|
||||
Reference in New Issue
Block a user