family-regsiter/.vscode/tasks.json
2021-11-28 11:58:25 +01:00

66 lines
No EOL
2 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "make",
"type": "shell",
"windows": {
// "command": "${config:python.pythonPath}",
"command": "${command:python.interpreterPath}",
"args": [
"${workspaceFolder}\\tools\\pycompile.py",
"${workspaceFolder}"
]
},
"linux": {
// "command": "${config:python.pythonPath}",
"command": "${command:python.interpreterPath}",
"args": [
"${workspaceFolder}/tools/pycompile.py",
"${workspaceFolder}"
]
},
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent",
"focus": false,
"clear": true
},
"problemMatcher": []
},
{
"label": "gen i18n",
"type": "shell",
"windows": {
"command": "py",
"args": [
"${workspaceFolder}\\tools\\geni18n.py"
]
},
"linux": {
"command": "${command:python.interpreterPath}",
"args": [
"${workspaceFolder}/tools/geni18n.py"
]
},
"group": "none",
"presentation": {
"reveal": "silent",
"focus": false,
"clear": true
},
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}/src/family_register",
"env": {
"PYTHONPATH": "${workspaceFolder}/src"
}
}
},
]
}