Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ConsoleObjCProject.xpt.xml « templates « CBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa7b3c5c395aca2e61bfb27e31e832f6f06aeefa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0"?>
<Template
	originator   = "Levi Bard" 
    created      = "07/30/2010"
    lastModified = "07/30/2010">
	
	<!-- Template Header -->
	<TemplateConfiguration>
		<_Name>Console Project</_Name>
		<Category>other/misc/c</Category>
		<Icon>md-project-console</Icon>
		<Image id="md-console-project" />
		<LanguageName>Objective C</LanguageName>
		<_Description>Creates simple hello world Objective C project.</_Description>
		<DefaultFilename>ConsoleObjCProject</DefaultFilename>
		<GroupId>md-project-console</GroupId>
	</TemplateConfiguration>
	
	<!-- Template Content -->
	<Combine name = "${ProjectName}" directory = ".">
		<Project name = "${ProjectName}" directory = "." type = "C/C++">
			<Options
				Target = "Bin"
				ExternalConsole = "True"
				CompilerArgs = ""
				LinkerArgs = ""/>
			
			<Files>
				<File name = "main.m" AddStandardHeader="True"><![CDATA[#import <stdio.h>

int main( int argc, const char *argv[] ) {
	printf( "hello world\n" );
	return 0;
}
]]></File>
			</Files>
		</Project>
	</Combine>
</Template>