unity build! but not like that kind

This commit is contained in:
2026-02-23 01:25:53 -05:00
parent 1e724f6a2c
commit 9ed3407383
7 changed files with 258 additions and 193 deletions

2
.vscode/launch.json vendored
View File

@@ -8,7 +8,7 @@
"program": "${workspaceFolder}/build/autosample.exe",
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "build"
"preLaunchTask": "build-debug"
}
]
}

11
.vscode/tasks.json vendored
View File

@@ -16,7 +16,16 @@
"command": "${workspaceFolder}/nob.exe",
"group": "build",
"problemMatcher": "$msCompile",
"detail": "Build autosample via nob"
"detail": "Build autosample (release)"
},
{
"label": "build-debug",
"type": "shell",
"command": "${workspaceFolder}/nob.exe",
"args": ["debug"],
"group": "build",
"problemMatcher": "$msCompile",
"detail": "Build autosample (debug)"
},
{
"label": "rebuild",