Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/elixir/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Yocto自定义应用程序树_Yocto - Fatal编程技术网

Yocto自定义应用程序树

Yocto自定义应用程序树,yocto,Yocto,我想在yocto项目中使用以下树编译我的应用程序: myapps/ ├── Papps1 │ ├── module-apps1 │ │ └── app1 │ │ ├── include │ │ │ ├── include files │ │ ├── configure.ac │ │ ├── Makefile │ │ └── other source files │ └── Papps2 │

我想在yocto项目中使用以下树编译我的应用程序:

 myapps/
├── Papps1
│   ├── module-apps1
│   │   └── app1
│   │       ├── include
│   │       │   ├── include files
│   │       ├── configure.ac
│   │       ├── Makefile
│   │       └── other source files
│   └── Papps2
│       └── app2
│          ├── include
│          ├── include files
│          ├── CMakeLists.txt
│          └── other source files
└── recipies_apps
    ├── recipies_app1.bb
    └── recipies_app2.bb
在yocto中编译这个架构树有什么解决方案吗