summaryrefslogtreecommitdiff
path: root/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files
diff options
context:
space:
mode:
authorManuel Traut <manut@linutronix.de>2015-02-02 10:59:55 +0100
committerManuel Traut <manut@linutronix.de>2015-02-02 10:59:55 +0100
commitdf6e120999650c1f52e766062a2ba8a7579698a7 (patch)
treeaace831a4b848fa11ab3338bab5a77965691a73b /distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files
parent5c6c2d4526dbda711eeb2ba96a20e3cad3808921 (diff)
yocto: add our meta-mini layer
with a lot of useful examples! Signed-off-by: Manuel Traut <manut@linutronix.de>
Diffstat (limited to 'distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files')
-rw-r--r--distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0.tar.bz2bin3340 -> 0 bytes
-rw-r--r--distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/helloqt.pro25
-rw-r--r--distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/main.cpp11
-rw-r--r--distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.cpp14
-rw-r--r--distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.h22
-rw-r--r--distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0/mainwindow.ui24
6 files changed, 0 insertions, 96 deletions
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
--- a/distribution/yocto-advanced/poky/meta-linutronix/recipes-hello/helloqt/files/helloqt-1.0.tar.bz2
+++ /dev/null
Binary files 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 <QApplication>
-
-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 <QMainWindow>
-
-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 @@
-<ui version="4.0">
- <class>MainWindow</class>
- <widget class="QMainWindow" name="MainWindow" >
- <property name="geometry" >
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>300</height>
- </rect>
- </property>
- <property name="windowTitle" >
- <string>MainWindow</string>
- </property>
- <widget class="QMenuBar" name="menuBar" />
- <widget class="QToolBar" name="mainToolBar" />
- <widget class="QWidget" name="centralWidget" />
- <widget class="QStatusBar" name="statusBar" />
- </widget>
- <layoutDefault spacing="6" margin="11" />
- <pixmapfunction></pixmapfunction>
- <resources/>
- <connections/>
-</ui>