Skip to content

Commit

Permalink
Changed the template application to Hello World.
Browse files Browse the repository at this point in the history
This provides a more useful template when making a simple Makefile
project.

Pulled out of #314
  • Loading branch information
ewaterlander authored and jonahgraham committed Mar 16, 2023
1 parent 1f700ff commit 50bddd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build/org.eclipse.cdt.make.core/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.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
Expand Down
2 changes: 2 additions & 0 deletions build/org.eclipse.cdt.make.core/templates/simple/main.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#include <iostream>

int main(int argc, char **argv) {
std::cout << "Hello World" << std::endl;
return 0;
}

0 comments on commit 50bddd8

Please sign in to comment.