begin macos port

This commit is contained in:
2026-03-03 10:00:38 -05:00
parent 7e298faadd
commit ad30ca8cb7
13 changed files with 2205 additions and 124 deletions

13
.vscode/launch.json vendored
View File

@@ -2,10 +2,19 @@
"version": "0.2.0",
"configurations": [
{
"name": "Debug autosample",
"name": "Debug autosample (macOS)",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/build_debug/autosample.app/Contents/MacOS/autosample",
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "build-debug"
},
{
"name": "Debug autosample (Windows)",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/autosample.exe",
"program": "${workspaceFolder}/build_debug/autosample.exe",
"args": [],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",