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

StaticLibraryCProject.xpt.xml « templates « CBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88150e2653979a5a84ab4cabf80c7ba51d7c33cf (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
40
41
42
43
44
<?xml version="1.0"?>
<Template
	originator   = "Marcos David Marin Amador" 
    created      = "08/16/2007"
    lastModified = "08/16/2007">
	
	<!-- Template Header -->
	<TemplateConfiguration>
		<_Name>Static Library</_Name>
		<Category>other/misc/c</Category>
		<Icon>md-project-library</Icon>
		<Image id="md-library-project" />
		<LanguageName>C</LanguageName>
		<_Description>Creates simple static library C project.</_Description>
		<DefaultFilename>StaticLibraryCProject</DefaultFilename>
		<GroupId>md-static-library-project</GroupId>
	</TemplateConfiguration>
	
	<!-- Template Content -->
	<Combine name = "${ProjectName}" directory = ".">
		<Project name = "${ProjectName}" directory = "." type = "C/C++">
			<Options
				Target = "StaticLibrary"
				PauseConsoleOutput = "True"
				CompilerArgs = ""
				LinkerArgs = ""/>
			
			<Files>
				<File name = "main.h" AddStandardHeader="True"><![CDATA[#ifndef __MAIN_H__
#define __MAIN_H__

/* Add function prototypes here */

#endif
]]></File>
				<File name = "main.c" AddStandardHeader="True"><![CDATA[#include "main.h"

/* Add function definitions here */
]]></File>
			</Files>
		</Project>
	</Combine>
</Template>