Difference between revisions of "Eclipse CDT projects with bitbake"
From ElphelWiki
| Line 2: | Line 2: | ||
| − | ├── bitbake-logs -> /home/eyesis/nc393/elphel393/poky/build/tmp/work/cortexa9-neon-poky-linux-gnueabi/apps- | + | ├── bitbake-logs -> /home/eyesis/nc393/elphel393/poky/build/tmp/work/cortexa9-neon-poky-linux-gnueabi/apps-astreamer/1_0-23/temp |
├── eclipse_project_setup | ├── eclipse_project_setup | ||
│ ├── .externalToolBuilders | │ ├── .externalToolBuilders | ||
| − | │ │ └── SCP apps- | + | │ │ └── SCP apps-astreamer to target.launch |
│ ├── .cproject | │ ├── .cproject | ||
│ └── .project | │ └── .project | ||
├── .externalToolBuilders | ├── .externalToolBuilders | ||
| − | │ └── SCP apps- | + | │ └── SCP apps-astreamer to target.launch |
| − | ├── image -> /home/eyesis/nc393/elphel393/poky/build/tmp/work/cortexa9-neon-poky-linux-gnueabi/apps- | + | ├── image -> /home/eyesis/nc393/elphel393/poky/build/tmp/work/cortexa9-neon-poky-linux-gnueabi/apps-astreamer/1_0-23/image |
├── scripts -> ../../scripts/ | ├── scripts -> ../../scripts/ | ||
| − | + | │ ├── run_bitbake.sh | |
| − | + | │ └── used_files.py | |
| + | ├── .settings | ||
| + | │ └── language.settings.xml | ||
├── src | ├── src | ||
| − | │ ├── . | + | │ ├── audio.cpp |
| − | │ ├── | + | │ ├── audio.h |
| − | + | │ ├── helper.h | |
| − | │ ├── | + | │ ├── helpers.cpp |
| − | │ ├── | + | │ ├── helpers.h |
| − | │ ├── | + | │ ├── main.cpp |
| − | |||
| − | |||
| − | │ ├── | ||
│ ├── Makefile | │ ├── 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 | ├── sysroots -> /home/eyesis/nc393/elphel393/poky/build/tmp/sysroots | ||
├── .cproject | ├── .cproject | ||
Revision as of 17:26, 21 November 2017
├── 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
File:File:Eclipse ccpp build refresh.png
Figure 6. C/C++ Build ⇒ Refresh Policy