From c4b989af9fd011ad8d1e049e7c741b19cacfc04b Mon Sep 17 00:00:00 2001 From: Erwin Waterlander Date: Thu, 30 May 2024 08:21:26 +0100 Subject: [PATCH] Remove 'Experimental' label from Core Build Makefile projects. Removed the 'Experimental' label in project creation wizard for Core Build Makefile projects. Seven years after the inception it's time to remove it. Core Build Makefile is now in a usable state. The 'Experimental' label scares users away from it, making them fall back to the old Managed Build Makefile projects. --- build/org.eclipse.cdt.make.ui/plugin.xml | 2 +- .../cdt/make/internal/ui/wizards/NewMakefileProjectWizard.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/org.eclipse.cdt.make.ui/plugin.xml b/build/org.eclipse.cdt.make.ui/plugin.xml index 71d56e9fab3..4ee28565d16 100644 --- a/build/org.eclipse.cdt.make.ui/plugin.xml +++ b/build/org.eclipse.cdt.make.ui/plugin.xml @@ -629,7 +629,7 @@ label="Makefile Project" wizard="org.eclipse.cdt.make.internal.ui.wizards.NewMakefileProjectWizard"> - (Experimental) Create a new project that builds with the'make' build tool using CDT's new Core Build System. + Create a Makefile project using CDT's new Core Build System. Over existing content or a new project with optional Hello World example. diff --git a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/wizards/NewMakefileProjectWizard.java b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/wizards/NewMakefileProjectWizard.java index 754e0db5a08..c95cc6dd785 100644 --- a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/wizards/NewMakefileProjectWizard.java +++ b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/wizards/NewMakefileProjectWizard.java @@ -50,7 +50,7 @@ public void createControl(Composite parent) { Button genSourceButton = new Button(buttonComp, SWT.CHECK); genSourceButton.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false)); - genSourceButton.setText("Generate Source and Makefile"); + genSourceButton.setText("Create Hello World Source and Makefile example"); //$NON-NLS-1$ genSourceButton.setSelection(generateSource); genSourceButton.addSelectionListener(new SelectionAdapter() { @Override