mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
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.
This commit is contained in:
parent
4eb08c8554
commit
d8328fb061
3 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.make.ui; singleton:=true
|
||||
Bundle-Version: 8.3.0.qualifier
|
||||
Bundle-Version: 8.3.100.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.make.internal.ui.MakeUIPlugin
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -629,7 +629,7 @@
|
|||
label="Makefile Project"
|
||||
wizard="org.eclipse.cdt.make.internal.ui.wizards.NewMakefileProjectWizard">
|
||||
<description>
|
||||
(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.
|
||||
</description>
|
||||
<tagReference
|
||||
id="org.eclipse.cdt.ui.cdtTag">
|
||||
|
|
|
@ -27,7 +27,7 @@ import org.eclipse.ui.dialogs.WizardNewProjectCreationPage;
|
|||
public class NewMakefileProjectWizard extends TemplateWizard {
|
||||
|
||||
private WizardNewProjectCreationPage mainPage;
|
||||
private boolean generateSource = true;
|
||||
private boolean generateSource = false;
|
||||
|
||||
@Override
|
||||
public void setContainer(IWizardContainer wizardContainer) {
|
||||
|
@ -50,7 +50,7 @@ public class NewMakefileProjectWizard extends TemplateWizard {
|
|||
|
||||
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");
|
||||
genSourceButton.setSelection(generateSource);
|
||||
genSourceButton.addSelectionListener(new SelectionAdapter() {
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue