libavc/.vscode/c_cpp_properties.json
Sushant 1a896d45d5 libavc: Add VSCode configuration files for Linux & MacOS
- Added .vscode directory with tasks.json, settings.json, c_cpp_properties.json, and launch.json.
- Configures the Build button to build the project.
- Configures Run and Debug panel to run avcdec and avcenc test benches.

Test: Build

Change-Id: Ifee9130f0041f77907a1a668227bc049270898e1
2024-10-15 22:51:19 -07:00

18 lines
No EOL
478 B
JSON

{
"configurations": [
{
"name": "Native",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/common",
"${workspaceFolder}/decoder",
"${workspaceFolder}/encoder"
],
"defines": [],
"cStandard": "c17",
"cppStandard": "c++17",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}