Okay, this seems promising

This commit is contained in:
maxstrb 2026-02-23 00:10:54 +01:00
parent 2149bebc34
commit a831c881a3
13 changed files with 6941 additions and 2 deletions

30
.qtcreator/project.json Normal file
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}"
}
]
}