From df6e120999650c1f52e766062a2ba8a7579698a7 Mon Sep 17 00:00:00 2001 From: Manuel Traut Date: Mon, 2 Feb 2015 10:59:55 +0100 Subject: yocto: add our meta-mini layer with a lot of useful examples! Signed-off-by: Manuel Traut --- .../helloqt/files/helloqt-1.0.tar.bz2 | Bin 3340 -> 0 bytes .../helloqt/files/helloqt-1.0/helloqt.pro | 25 --------------------- .../helloqt/files/helloqt-1.0/main.cpp | 11 --------- .../helloqt/files/helloqt-1.0/mainwindow.cpp | 14 ------------ .../helloqt/files/helloqt-1.0/mainwindow.h | 22 ------------------ .../helloqt/files/helloqt-1.0/mainwindow.ui | 24 -------------------- 6 files changed, 96 deletions(-) delete mode 100644 distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0.tar.bz2 delete mode 100644 distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/helloqt.pro delete mode 100644 distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/main.cpp delete mode 100644 distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp delete mode 100644 distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.h delete mode 100644 distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.ui (limited to 'distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files') diff --git a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0.tar.bz2 b/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0.tar.bz2 deleted file mode 100644 index 4ac91e9..0000000 Binary files a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0.tar.bz2 and /dev/null differ diff --git a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/helloqt.pro b/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/helloqt.pro deleted file mode 100644 index c3cfcc0..0000000 --- a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/helloqt.pro +++ /dev/null @@ -1,25 +0,0 @@ -#------------------------------------------------- -# -# Project created by QtCreator 2013-06-04T20:56:37 -# -#------------------------------------------------- - -QT += core gui - -greaterThan(QT_MAJOR_VERSION, 4): QT += widgets - -TARGET = helloqt -TEMPLATE = app - - -SOURCES += main.cpp\ - mainwindow.cpp - -HEADERS += mainwindow.h - -FORMS += mainwindow.ui - -target.path = /opt/helloqt -target.files = helloqt - -INSTALLS += target diff --git a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/main.cpp b/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/main.cpp deleted file mode 100644 index 9e2d83c..0000000 --- a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/main.cpp +++ /dev/null @@ -1,11 +0,0 @@ -#include "mainwindow.h" -#include - -int main(int argc, char *argv[]) -{ - QApplication a(argc, argv); - MainWindow w; - w.show(); - - return a.exec(); -} diff --git a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp b/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp deleted file mode 100644 index 49d64fc..0000000 --- a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "mainwindow.h" -#include "ui_mainwindow.h" - -MainWindow::MainWindow(QWidget *parent) : - QMainWindow(parent), - ui(new Ui::MainWindow) -{ - ui->setupUi(this); -} - -MainWindow::~MainWindow() -{ - delete ui; -} diff --git a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.h b/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.h deleted file mode 100644 index 112fda1..0000000 --- a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef MAINWINDOW_H -#define MAINWINDOW_H - -#include - -namespace Ui { -class MainWindow; -} - -class MainWindow : public QMainWindow -{ - Q_OBJECT - -public: - explicit MainWindow(QWidget *parent = 0); - ~MainWindow(); - -private: - Ui::MainWindow *ui; -}; - -#endif // MAINWINDOW_H diff --git a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.ui b/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.ui deleted file mode 100644 index 6050363..0000000 --- a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.ui +++ /dev/null @@ -1,24 +0,0 @@ - - MainWindow - - - - 0 - 0 - 400 - 300 - - - - MainWindow - - - - - - - - - - - -- cgit v1.2.3