30 lines
807 B
JSON
30 lines
807 B
JSON
{
|
|
"$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}"
|
|
}
|
|
]
|
|
}
|