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

SharedLibraryCppProject.xpt.xml « templates « CBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52f47fa589d64da0c12fbba8a4ecde42f0d4a771 (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
<?xml version="1.0"?>
<Template
	originator   = "Marcos David Marin Amador" 
    created      = "08/16/2007"
    lastModified = "08/16/2007">
	
	<!-- Template Header -->
	<TemplateConfiguration>
		<_Name>Shared Library</_Name>
		<Category>other/misc/c</Category>
		<Icon>md-project-library</Icon>
		<Image id="md-library-project" />
		<LanguageName>CPP</LanguageName>
		<_Description>Creates simple shared library C++ project.</_Description>
		<DefaultFilename>SharedLibraryCppProject</DefaultFilename>
		<GroupId>md-shared-library-project</GroupId>
	</TemplateConfiguration>
	
	<!-- Template Content -->
	<Combine name = "${ProjectName}" directory = ".">
		<Project name = "${ProjectName}" directory = "." type = "C/C++">
			<Options
				Target = "SharedLibrary"
				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.cpp" AddStandardHeader="True"><![CDATA[#include "main.h"

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