Skip to main content
summaryrefslogtreecommitdiffstats
path: root/qt
diff options
context:
space:
mode:
authorDoug Schaefer2016-08-09 18:54:14 +0000
committerGerrit Code Review @ Eclipse.org2016-08-10 15:17:41 +0000
commit20c4e5ba88ba4fa3be972642f5f03de546e9b864 (patch)
tree78ca1332198a89fd29ef3545f8adb8b35dddfabc /qt
parent35921b4bbd22c58d3aa3c4317a6132a1c85943f0 (diff)
downloadorg.eclipse.cdt-20c4e5ba88ba4fa3be972642f5f03de546e9b864.tar.gz
org.eclipse.cdt-20c4e5ba88ba4fa3be972642f5f03de546e9b864.tar.xz
org.eclipse.cdt-20c4e5ba88ba4fa3be972642f5f03de546e9b864.zip
Get CMake projects created and building. New C/C++ Project Wizard.
Fixed up CMake new project creation. Hooked up the CMake build config properly. Introducing the New C/C++ Project Wizard that hold all the new project types: Arduino, Qt, CMake. Change-Id: I9f9c8b1f51b136515fe226c15059cdbb99106275
Diffstat (limited to 'qt')
-rw-r--r--qt/org.eclipse.cdt.qt.ui/icons/qt_logo.pngbin0 -> 4315 bytes
-rw-r--r--qt/org.eclipse.cdt.qt.ui/plugin.xml13
2 files changed, 8 insertions, 5 deletions
diff --git a/qt/org.eclipse.cdt.qt.ui/icons/qt_logo.png b/qt/org.eclipse.cdt.qt.ui/icons/qt_logo.png
new file mode 100644
index 00000000000..528cdef4d64
--- /dev/null
+++ b/qt/org.eclipse.cdt.qt.ui/icons/qt_logo.png
Binary files differ
diff --git a/qt/org.eclipse.cdt.qt.ui/plugin.xml b/qt/org.eclipse.cdt.qt.ui/plugin.xml
index de058a0092e..ae4644538db 100644
--- a/qt/org.eclipse.cdt.qt.ui/plugin.xml
+++ b/qt/org.eclipse.cdt.qt.ui/plugin.xml
@@ -131,16 +131,19 @@
label="Qt">
</tag>
<template
- icon="icons/HelloWorld48.png"
+ icon="icons/qt_logo.png"
id="org.eclipse.cdt.qt.ui.template.helloWorld"
- label="C++/QML HelloWorld"
+ label="Qt C++/QML Application"
wizard="org.eclipse.cdt.internal.qt.ui.wizards.HelloWorldWizard">
+ <description>
+ A simple Hello World Qt Application with main function in C++ and the UI in QML.
+ </description>
<tagReference
id="org.eclipse.cdt.qt.ui.tag">
</tagReference>
- <description>
- A simple Hello World App with main function in C++ and the UI in QML.
- </description>
+ <tagReference
+ id="org.eclipse.cdt.ui.cdtTag">
+ </tagReference>
</template>
</extension>
<extension

Back to the top