Difference between revisions of "Eclipse CDT projects with bitbake"
From ElphelWiki
Line 1: | Line 1: | ||
− | + | ==Project Files and Directories== | |
Line 36: | Line 36: | ||
│ ├── streamer.h | │ ├── streamer.h | ||
│ ├── video.cpp | │ ├── video.cpp | ||
− | │ | + | │ └── video.h |
├── sysroots -> /home/eyesis/nc393/elphel393/poky/build/tmp/sysroots | ├── sysroots -> /home/eyesis/nc393/elphel393/poky/build/tmp/sysroots | ||
├── .cproject | ├── .cproject |
Revision as of 17:24, 21 November 2017
Project Files and Directories
├── bitbake-logs -> /home/eyesis/nc393/elphel393/poky/build/tmp/work/cortexa9-neon-poky-linux-gnueabi/apps-astreamer/1_0-23/temp ├── eclipse_project_setup │ ├── .externalToolBuilders │ │ └── SCP apps-astreamer to target.launch │ ├── .cproject │ └── .project ├── .externalToolBuilders │ └── SCP apps-astreamer to target.launch ├── image -> /home/eyesis/nc393/elphel393/poky/build/tmp/work/cortexa9-neon-poky-linux-gnueabi/apps-astreamer/1_0-23/image ├── scripts -> ../../scripts/ │ ├── run_bitbake.sh │ └── used_files.py ├── .settings │ └── language.settings.xml ├── src │ ├── audio.cpp │ ├── audio.h │ ├── helper.h │ ├── helpers.cpp │ ├── helpers.h │ ├── main.cpp │ ├── Makefile │ ├── parameters.cpp │ ├── parameters.h │ ├── rtp_stream.cpp │ ├── rtp_stream.h │ ├── rtsp.cpp │ ├── rtsp.h │ ├── session.h │ ├── socket.cpp │ ├── socket.h │ ├── streamer.cpp │ ├── streamer.h │ ├── video.cpp │ └── video.h ├── sysroots -> /home/eyesis/nc393/elphel393/poky/build/tmp/sysroots ├── .cproject ├── .gitignore ├── LICENSE ├── Makefile ├── .project ├── README.md └── VERSION