saqut-compiler/.vscode/tasks.json

32 lines
993 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "build saqut",
"command": "/usr/bin/g++",
"args": [
"-g", // Debug sembolleri açık kalsın
"-O0", // Debug sırasında optimizasyonu kapat (kodun satırları karışmasın)
"./Parsing.cpp",
"${workspaceFolder}/lightning/lib/.libs/liblightning.a",
"-I${workspaceFolder}/lightning/include",
"-D_GNU_SOURCE",
"-ldl",
"-o",
"saqut" // Çıktı ismi sabit olsun (saqut)
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "saQut için özel JIT derleme görevi"
}
]
}