Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2016-09-12 01:30:25 +0000
committerDoug Schaefer2016-09-12 15:14:17 +0000
commitb26917be9068d14b7fa5d5c6b2fdcc1228a0e445 (patch)
tree362c69a1a312cff5d4e8221cf45fc541fd2faed9 /build/org.eclipse.cdt.cmake.ui
parenta6062a2b985ae2856d0ee5c8d79220c8be8b02ea (diff)
downloadorg.eclipse.cdt-b26917be9068d14b7fa5d5c6b2fdcc1228a0e445.tar.gz
org.eclipse.cdt-b26917be9068d14b7fa5d5c6b2fdcc1228a0e445.tar.xz
org.eclipse.cdt-b26917be9068d14b7fa5d5c6b2fdcc1228a0e445.zip
Introduce Core Build launches and Launch Bar integration.
Unify launching for projects that use the new Core Build system. Starts with CMake projects. We'll do Qt projects next. Change-Id: I14af8e99decd54cc6548095b3ad3e054c550aea2
Diffstat (limited to 'build/org.eclipse.cdt.cmake.ui')
-rw-r--r--build/org.eclipse.cdt.cmake.ui/META-INF/MANIFEST.MF2
-rw-r--r--build/org.eclipse.cdt.cmake.ui/icons/newcc_app.gifbin630 -> 0 bytes
-rw-r--r--build/org.eclipse.cdt.cmake.ui/pom.xml2
-rw-r--r--build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/Activator.java8
-rw-r--r--build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/NewCMakeProjectWizard.java4
5 files changed, 7 insertions, 9 deletions
diff --git a/build/org.eclipse.cdt.cmake.ui/META-INF/MANIFEST.MF b/build/org.eclipse.cdt.cmake.ui/META-INF/MANIFEST.MF
index d57e9c50e80..20ba12ee10d 100644
--- a/build/org.eclipse.cdt.cmake.ui/META-INF/MANIFEST.MF
+++ b/build/org.eclipse.cdt.cmake.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: CDT CMake UI
Bundle-SymbolicName: org.eclipse.cdt.cmake.ui;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-Activator: org.eclipse.cdt.cmake.ui.internal.Activator
Bundle-Vendor: Eclipse CDT
Require-Bundle: org.eclipse.core.runtime,
diff --git a/build/org.eclipse.cdt.cmake.ui/icons/newcc_app.gif b/build/org.eclipse.cdt.cmake.ui/icons/newcc_app.gif
deleted file mode 100644
index 4b39411daf5..00000000000
--- a/build/org.eclipse.cdt.cmake.ui/icons/newcc_app.gif
+++ /dev/null
Binary files differ
diff --git a/build/org.eclipse.cdt.cmake.ui/pom.xml b/build/org.eclipse.cdt.cmake.ui/pom.xml
index f41ffbe83f0..acd69f7e5e4 100644
--- a/build/org.eclipse.cdt.cmake.ui/pom.xml
+++ b/build/org.eclipse.cdt.cmake.ui/pom.xml
@@ -11,7 +11,7 @@
<relativePath>../../pom.xml</relativePath>
</parent>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<artifactId>org.eclipse.cdt.cmake.ui</artifactId>
<packaging>eclipse-plugin</packaging>
</project> \ No newline at end of file
diff --git a/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/Activator.java b/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/Activator.java
index 3a7e319dd55..d0e3630ac5e 100644
--- a/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/Activator.java
+++ b/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/Activator.java
@@ -18,6 +18,8 @@ public class Activator extends AbstractUIPlugin {
private static Activator plugin;
+ public static final String PLUGIN_ID = "org.eclipse.cdt.cmake.ui"; //$NON-NLS-1$
+
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
@@ -34,12 +36,8 @@ public class Activator extends AbstractUIPlugin {
return plugin;
}
- public static String getId() {
- return plugin.getBundle().getSymbolicName();
- }
-
public static IStatus errorStatus(String message, Throwable cause) {
- return new Status(IStatus.ERROR, getId(), message, cause);
+ return new Status(IStatus.ERROR, PLUGIN_ID, message, cause);
}
public static void log(Exception e) {
diff --git a/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/NewCMakeProjectWizard.java b/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/NewCMakeProjectWizard.java
index ba0e59ba7f2..ad732e9e859 100644
--- a/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/NewCMakeProjectWizard.java
+++ b/build/org.eclipse.cdt.cmake.ui/src/org/eclipse/cdt/cmake/ui/internal/NewCMakeProjectWizard.java
@@ -29,8 +29,8 @@ public class NewCMakeProjectWizard extends TemplateWizard {
Dialog.applyDialogFont(getControl());
}
};
- mainPage.setTitle("New Arduino Project"); //$NON-NLS-1$
- mainPage.setDescription("Specify properties of new Arduino project."); //$NON-NLS-1$
+ mainPage.setTitle("New CMake Project"); //$NON-NLS-1$
+ mainPage.setDescription("Specify properties of new CMake project."); //$NON-NLS-1$
this.addPage(mainPage);
}

Back to the top