CMake error in a project downloaded from Git

Hi, I downloaded a project from Git. I tried to open in SES using nRF Connect SDK. During the initial Cmake, the error occurs as shown in attached image.

Parents Reply Children
  • 1. How to remove/ exclude the commands issued using Extra Settings while opening/ creating a project ?

    2. In which file are the external settings saved after creation/ opening of project ?

    3. Is it possible to manually edit the settings in file which were provided by extra settings option ?

  • mexco said:
    1. How to remove/ exclude the commands issued using Extra Settings while opening/ creating a project ?

    If you look at what you are writing in Extra CMake Build Options, you will see that the part after the '=' character is a list of config files separated by semicolons, if you remove azure-tracker-cloud-firmware-azure.conf, you are left with:

    -DOVERLAY_CONFIG=overlay-azure.conf;overlay-debug.conf

    These files are merged with prj.conf to create the full list of configs.

    mexco said:
    2. In which file are the external settings saved after creation/ opening of project ?

    Not entirely sure what you mean here, but the full list of config values used in the project can be found in the build folder. In <BUILD>/zephyr/.config and also with a different format in <BUILD>/zephyr/include/generated/autoconf.h

    mexco said:
    3. Is it possible to manually edit the settings in file which were provided by extra settings option ?

    Yes, you must edit overlay-azure.conf and add the correct values for your Azure Cloud in order to run the sample.

Related