add build system, vendor deps, init stuff

This commit is contained in:
2026-02-22 17:57:58 -05:00
parent 530439574c
commit aa6065b0bd
26 changed files with 72992 additions and 26 deletions

14
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug autosample",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/autosample.exe",
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "build"
}
]
}