Go to file
Simon From Jakosen ba238692a4 fix readme
2024-08-07 12:20:08 +02:00
helloworld-c-make make yocto compatible 2024-08-07 10:13:30 +02:00
helloworld-cpp-cmake decrease cmake version 2024-08-07 10:17:02 +02:00
helloworld-rs add readme stuff 2024-08-02 14:26:30 +00:00
meta-helloworld add layer 2024-08-07 12:19:03 +02:00
README.md fix readme 2024-08-07 12:20:08 +02:00

example-projects

Yocto

Add layer in a Yocto project

bitbake-layers add-layer /path/to/meta-helloworld

Then add this to build/conf/local.conf:

IMAGE_INSTALL:append = " helloworld-c-make"
IMAGE_INSTALL:append = " helloworld-cpp-cmake"
IMAGE_INSTALL:append = " helloworld-rs"

Add/create recipes in a Yocto project

devtool add helloworld-c-make git@bitbucket.org:dol-sensors/example-projects.git --srcbranch main --src-subdir helloworld-c-make

devtool add helloworld-cpp-cmake git@bitbucket.org:dol-sensors/example-projects.git --srcbranch main --src-subdir helloworld-cpp-cmake

devtool add helloworld-rs git@bitbucket.org:dol-sensors/example-projects.git --srcbranch main --src-subdir helloworld-rs