Files
redis-cpp/.vscode/tasks.json

15 lines
401 B
JSON
Raw Normal View History

2025-09-09 17:16:32 +08:00
{
"tasks": [
{
"type": "shell",
"label": "CMake Generate",
"command": "cmake -S. -Bbuild -DCAMKE_POLICY_MINIMUM_VERSION=3.5 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON $VCPKG_CMAKE_ARGS"
},
{
"type": "shell",
"label": "CMake Build",
"comamnd": "cmake --build build"
}
]
}