* Makefile.am:
[monodevelop.git] / main / src / addins / CBinding / templates / SharedLibraryCppProject.xpt.xml
blob18bcc4b176c22913cc52c7439d1bcbb4fffa091a
1 <?xml version="1.0"?>
2 <Template
3         originator   = "Marcos David Marin Amador" 
4     created      = "08/16/2007"
5     lastModified = "08/16/2007">
6         
7         <!-- Template Header -->
8         <TemplateConfiguration>
9                 <_Name>Shared Library</_Name>
10                 <_Category>C/C++</_Category>
11                 <Icon>md-project-library|res:cpp-icon-32.png</Icon>
12                 <LanguageName>CPP</LanguageName>
13                 <_Description>Creates simple shared library C++ project.</_Description>
14         </TemplateConfiguration>
15         
16         <!-- Template Content -->
17         <Combine name = "${ProjectName}" directory = ".">
18                 <Project name = "${ProjectName}" directory = "." type = "C/C++">
19                         <Options
20                                 Target = "SharedLibrary"
21                                 PauseConsoleOutput = "True"
22                                 CompilerArgs = ""
23                                 LinkerArgs = ""/>
24                         
25                         <Files>
26                                 <File name = "main.h"><![CDATA[// project created on ${Date} at ${Time}
27 #ifndef __MAIN_H__
28 #define __MAIN_H__
30 // Add function prototypes here
32 #endif
33 ]]></File>
34                                 <File name = "main.cpp"><![CDATA[#include "main.h"
36 // Add function definitions here
37 ]]></File>
38                         </Files>
39                 </Project>
40         </Combine>
41 </Template>