Hello everyone,
I'm testing the nRF Connect SDK VS Code extensions and I was wondering how would I open such applications as nrf_desktop or asset_tracker_v2 in VS Code?
I tried these two approaches:
- If I use this directory as path in "nrf-connect-applications" and add a build configuration I can select the compatible boards but no prj.conf are available.
<path-to-sdk>/nrf/applications/nrf_desktop"
- If I use this directory as path in "nrf-connect-applications" and add a build configuration I can select the prj.conf files but building is not working because no CMakeLists file is found.
<path-to-sdk>/nrf/applications/nrf_desktop/configuration/nrf52840dk_nrf52840"
Is there a way to get the extension to detect the prj.conf files as well as the CMakeLists when the project has a similar structure to the nrf_desktop application?
So far my .vscode/settings.json looks like this (${workspaceFolder} is the NCS SDK v1.8.0 root directory):
"terminal.integrated.defaultProfile.windows": "nRF Connect",
"nrf-connect.topdir": "${workspaceFolder}",
"nrf-connect.toolchain.path": "${workspaceFolder}\\toolchain",
"nrf-connect.applications": [
"${workspaceFolder}\\nrf\\applications\\nrf_desktop",
"${workspaceFolder}\\nrf\\applications\\nrf_desktop\configuration\nrf52840dk_nrf52840"
]
Thanks in advance!

