got api working ish, I need to clean this code up a lot

This commit is contained in:
2026-04-27 17:26:49 +01:00
parent c87949bc4b
commit c53138b163
13 changed files with 1143 additions and 43 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"$schema": "https://download.qt.io/official_releases/qtcreator/latest/installer_source/jsonschemas/project.json",
"build.configuration": [
{
"name": "cargo build",
"steps": [
{
"arguments": [
"build"
],
"executable": "cargo",
"workingDirectory": "%{ActiveProject:ProjectDirectory}"
}
]
}
],
"files.exclude": [
".qtcreator/project.json.user"
],
"targets": [
{
"arguments": [
"run"
],
"executable": "cargo",
"name": "cargo run",
"workingDirectory": "%{ActiveProject:ProjectDirectory}"
}
]
}