- 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
18 lines
No EOL
478 B
JSON
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
|
|
} |