summaryrefslogtreecommitdiff
path: root/templates/wix.mpd
diff options
context:
space:
mode:
authorJames H. Hill <hilljh82@gmail.com>2009-06-24 21:18:04 +0000
committerJames H. Hill <hilljh82@gmail.com>2009-06-24 21:18:04 +0000
commit304902543672d169858db30055f588cab894486b (patch)
treebeeb7c0d22bc05172c26fd893d16cbe741d1492b /templates/wix.mpd
parenta2b5f6c2f125964098ff8c328137a1f0003b89fb (diff)
downloadMPC-304902543672d169858db30055f588cab894486b.tar.gz
Wed Jun 24 21:14:20 UTC 2009 James H. Hill <hillj@dre.vanderbilt.edu>
Diffstat (limited to 'templates/wix.mpd')
-rw-r--r--templates/wix.mpd18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/wix.mpd b/templates/wix.mpd
new file mode 100644
index 00000000..aad3b447
--- /dev/null
+++ b/templates/wix.mpd
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<Include>
+<%marker(top)%>
+ <Fragment Id="<%project_name%>">
+<%if(sharedname || exename)%>
+ <DirectoryRef Id="INSTALLDIR">
+ <Directory Id="<%project_name%>.output"<%if(target_directory)%> Name="<%target_directory%>"<%endif%>>
+ <Component Id="<%project_name%>" Guid="<%guid%>">
+ <File Id="<%project_name%>.binary" Name="<%if(type_is_dynamic)%><%sharedname%>.dll<%else%><%exename%>.exe<%endif%>"
+ Source="<%source_directory%>/<%if(type_is_dynamic)%><%sharedname%>.dll<%else%><%exename%>.exe<%endif%>"
+ DiskId="<%diskid(1)%>" />
+ </Component>
+ </Directory>
+ </DirectoryRef>
+<%endif%>
+ </Fragment>
+<%marker(bottom)%>
+</Include>