/
d.vision
/
division_engine_cpp
Обзор
Документация
Войти
/
d.vision
/
division_engine_cpp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.vscode/tasks.json
49 строк
1 KB
den163
resources folder changed to a symlink
02 ноя 2024, 14:01
02 ноя 2024, 14:01
c4d1a6e
Код
Авторство
О чём код?
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "presentation": { "focus": false, "reveal": "never" }, "tasks": [ { "label": "Run valgrind", "type": "shell", "command": "valgrind ${workspaceFolder}/build/examples/division_engine_cpp_example", "args": [], "options": { "cwd": "${workspaceFolder}/build" }, }, { "label": "Build example", "type": "cmake", "command": "build", "options": { "cwd": "${workspaceFolder}", "environment": { "DIVISION_ENGINE_CPP_EXAMPLES": 1, } }, "targets": [ "division_core_example", "division_canvas_example", "division_view_tree_example" ] }, { "label": "Run clang-tidy analysis", "type": "shell", "linux": { "command": "clang-tidy-15 -p ./build ./examples/*.cpp", }, "osx": { "command": "clang-tidy -p ./build ./examples/*.cpp", }, "options": { "cwd": "${workspaceFolder}", }, } ] }