Files
stupidsimcpp/.vscode/tasks.json
2025-11-07 05:46:11 -05:00

49 lines
1.3 KiB
JSON

{
"tasks": [
{
"label": "build-pointcloud-renderer",
"type": "shell",
"command": "g++",
"args": [
"-std=c++17",
"-O3",
"-march=native",
"-o", "${workspaceFolder}/bin/pointcloud_renderer",
"main.cpp",
"util/timing_decorator.cpp",
"-ljxl",
"-ljxl_threads"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$gcc"],
"detail": "Compiler build task for pointcloud_renderer"
},
{
"type": "cppbuild",
"label": "C/C++: g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}