summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.cmake.managedbuilder/templates/projecttemplates/HelloWorldCPPCMakeProject/src/main.cpp
blob: 78b4e231a7d8bf3e14b8443ad1e88aa4c5c6b2b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/** @mainpage $(projectName) - $(vendor)
 *
 * @author $(author) <$(email)>
 * @version $(projectVersion)
**/


#include <stdio.h>
/**
 * Main class of project $(projectName)
 *
 * @param argc the number of arguments
 * @param argv the arguments from the commandline
 * @returns exit code of the application
 */
int main(int argc, char **argv) {
	// print a greeting to the console
	printf("Hello World!\n");

	return 0;
}