-1

What changes should make to enable dlt-system. In build folder dlt-system application is not generating.

Manually by using command: cmake -D with dlt-system=ON it will generate but I need to generate while building please look at recipie image

1

vimuth
  • 5,064
  • 33
  • 79
  • 116

1 Answers1

0

Your recipe supports dlt-system via PACKAGECONFIG.

In order to activate that flags in the compilation process, you just need to add dlt-system to PACKAGECONFIG in .bb or .bbappend file to the recipe:

PACKAGECONFIG_append = " dlt-system"

If you want to add it from local.conf:

PACKAGECONFIG_pn-name_append = " dlt-system"

Just change name with your recipe name.

This will add -DWITH_DLT_SYSTEM=ON to EXTRA_OECMAKE which is used in do_configure of the cmake class.

Talel BELHADJSALEM
  • 3,199
  • 1
  • 10
  • 30