Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove 'Experimental' label from Core Build Makefile projects. #805

Merged
merged 5 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/org.eclipse.cdt.make.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/org.eclipse.cdt.make.ui/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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&apos;make&apos; build tool using CDT&apos;s new Core Build System.
Create a Makefile project using CDT&apos;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">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class NewMakefileProjectWizard extends TemplateWizard {

private WizardNewProjectCreationPage mainPage;
private boolean generateSource = true;
private boolean generateSource = false;

@Override
public void setContainer(IWizardContainer wizardContainer) {
Expand All @@ -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");
genSourceButton.setSelection(generateSource);
genSourceButton.addSelectionListener(new SelectionAdapter() {
@Override
Expand Down
Loading