forked from audiokinetic/ReaWwise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.distribute
41 lines (38 loc) · 1.76 KB
/
Package.distribute
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
<?xml version="1.0" encoding="UTF-8"?>
<distribute rootdir="../../Installers"
xmlns:tar="attrib://tar"
xmlns:zip="attrib://7z">
<!-- This file is located with the BuildTools in the Configs folder. -->
<import path="CommonConfigurations.distribute" />
<tasks>
<task name="ReaperWwiseTransfer.Mac" export-path="${BUILDS_LOCATION}/ReaperWwiseTransfer/${VERSION}/${WWISE_VERSION}.${REAPER_WWISE_TRANSFER_VERSION}/Artifacts" zip:archive-name="ReaperWwiseTransfer_MacOS_${CONFIG}">
<includegroup>Binary</includegroup>
</task>
<task name="ReaperWwiseTransfer.Windows" export-path="${BUILDS_LOCATION}\ReaperWwiseTransfer\${VERSION}\${WWISE_VERSION}.${REAPER_WWISE_TRANSFER_VERSION}\Artifacts" zip:archive-name="ReaperWwiseTransfer_Windows_${CONFIG}">
<includegroup>Binary</includegroup>
</task>
<task name="ReaperWwiseTransferBinaryBundles.Windows" export-path="${BUILDS_LOCATION}\ReaperWwiseTransfer\${VERSION}\${WWISE_VERSION}.${REAPER_WWISE_TRANSFER_VERSION}\Bundles" zip:archive-name="ReaperWwiseTransfer_${VERSION}_Build${BUILD_NUMBER}_Windows">
<includegroup>BinaryBundlesWindows</includegroup>
</task>
<task name="ReaperWwiseTransferBinaryBundles.Mac" export-path="${BUILDS_LOCATION}/ReaperWwiseTransfer/${VERSION}/${WWISE_VERSION}.${REAPER_WWISE_TRANSFER_VERSION}/Bundles" zip:archive-name="ReaperWwiseTransfer_${VERSION}_Build${BUILD_NUMBER}_MacOS">
<includegroup>BinaryBundlesMac</includegroup>
</task>
</tasks>
<groups>
<group name="Binary">
<path source="." >
<include value="*" />
</path>
</group>
<group name="BinaryBundlesWindows">
<path source=".">
<include value="*.dll" />
</path>
</group>
<group name="BinaryBundlesMac">
<path source=".">
<include value="*.dylib" />
</path>
</group>
</groups>
</distribute>