hi support team,
for ncs, how to add dir to segger IDE like this one.
for example, like keil IDE separating those two .c into two folder in segger.

Regards,
William.
hi support team,
for ncs, how to add dir to segger IDE like this one.
for example, like keil IDE separating those two .c into two folder in segger.

Regards,
William.
Hi,
Do you want to automatically add all .c files from one folder?
In order to take in all .c files in a directory, you will have to manually edit the CMakeLists.txt file in your project.
Remove this entry:
target_sources(app PRIVATE src/main.c)
And replace it with:
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})
Kind regards,
Håkon