Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d8328fb

Browse files
authoredMay 30, 2024··
Remove 'Experimental' label from Core Build Makefile projects. (#805)
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.
1 parent 4eb08c8 commit d8328fb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎build/org.eclipse.cdt.make.ui/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.cdt.make.ui; singleton:=true
5-
Bundle-Version: 8.3.0.qualifier
5+
Bundle-Version: 8.3.100.qualifier
66
Bundle-Activator: org.eclipse.cdt.make.internal.ui.MakeUIPlugin
77
Bundle-Vendor: %providerName
88
Bundle-Localization: plugin

‎build/org.eclipse.cdt.make.ui/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@
629629
label="Makefile Project"
630630
wizard="org.eclipse.cdt.make.internal.ui.wizards.NewMakefileProjectWizard">
631631
<description>
632-
(Experimental) Create a new project that builds with the&apos;make&apos; build tool using CDT&apos;s new Core Build System.
632+
Create a Makefile project using CDT&apos;s new Core Build System. Over existing content or a new project with optional Hello World example.
633633
</description>
634634
<tagReference
635635
id="org.eclipse.cdt.ui.cdtTag">

‎build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/internal/ui/wizards/NewMakefileProjectWizard.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
public class NewMakefileProjectWizard extends TemplateWizard {
2828

2929
private WizardNewProjectCreationPage mainPage;
30-
private boolean generateSource = true;
30+
private boolean generateSource = false;
3131

3232
@Override
3333
public void setContainer(IWizardContainer wizardContainer) {
@@ -50,7 +50,7 @@ public void createControl(Composite parent) {
5050

5151
Button genSourceButton = new Button(buttonComp, SWT.CHECK);
5252
genSourceButton.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
53-
genSourceButton.setText("Generate Source and Makefile");
53+
genSourceButton.setText("Create Hello World Source and Makefile example");
5454
genSourceButton.setSelection(generateSource);
5555
genSourceButton.addSelectionListener(new SelectionAdapter() {
5656
@Override

0 commit comments

Comments
 (0)
Please sign in to comment.