1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Changed the template application to Hello World.

This provides a more useful template when making a simple Makefile
project.

Pulled out of #314
This commit is contained in:
Erwin Waterlander 2023-03-10 12:59:24 +00:00 committed by Jonah Graham
parent 1f700ff100
commit 50bddd886a
2 changed files with 3 additions and 1 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.cdt.make.core; singleton:=true
Bundle-Version: 7.6.100.qualifier
Bundle-Version: 7.6.200.qualifier
Bundle-Activator: org.eclipse.cdt.make.core.MakeCorePlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin

View file

@ -1,4 +1,6 @@
#include <iostream>
int main(int argc, char **argv) {
std::cout << "Hello World" << std::endl;
return 0;
}