-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAStar.wxs
More file actions
57 lines (53 loc) · 2.43 KB
/
AStar.wxs
File metadata and controls
57 lines (53 loc) · 2.43 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Module Id="AStarModule" Language="1033" Version="1.0.0.0">
<!--Program GUIDs>
<FlexSim="63D4DB20-2995-4A50-BEA1-AD7F2D0F4397">
<FlexSimChinese="A1443497-8B07-4CCF-AE9D-BCC079E8E5BF">
<FlexSimJapanese="4D7AFDD4-3B85-4B76-9D8C-C1C04ECC50D3">
<FlexSimChineseTraditional="C838DD5D-0982-4F52-B0F0-44F3B434BC0C">
<FlexSimSpanish="B3DC204A-C635-4BC5-9FFA-435E8C73298B">
</Program GUIDs-->
<Package Id="6EBAF277-0D85-4030-80A6-961EF0DFFC06" Manufacturer="FlexSim Software Products Inc." InstallerVersion="200" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="MergeRedirectFolder">
<?if $(var.Platform) = x86 ?>
<!--Program GUIDs>
<FlexSim="3FD22819-BC87-4984-948D-FC9B9A37CCA0">
<FlexSimChinese="7C03E3A3-4EA5-4B5E-8BB4-839EB1C03CF6">
<FlexSimJapanese="28E3FF13-97BD-4ADF-9674-D101B340FBC0">
<FlexSimChineseTraditional="522A8F79-A603-4040-82BF-E646B9078A28">
<FlexSimSpanish="2F6153AD-DC39-4800-AA19-797B8FBA4229">
</Program GUIDs-->
<Component Id="DLLBinaries_x86" Guid="8C85D7DC-C100-4B3C-8689-BC093CA8D93F">
<File Name="AStar_x86.dll" Source="$(var.ProjectDir)AStar_x86.dll" />
</Component>
<?else?>
<!--Program GUIDs>
<FlexSim="9AFFABF3-AFFF-4775-80EC-258606A3D96F">
<FlexSimChinese="FA34B290-83ED-4AC1-BA7D-22E9DB36512D">
<FlexSimJapanese="139D67BB-6CDA-4B59-B195-FD7145F190CA">
<FlexSimChineseTraditional="88F7A439-A78B-4876-896D-2E01A31F7CBA">
<FlexSimSpanish="A20BC157-5D7D-4F36-B478-1D43EA991782">
</Program GUIDs-->
<Component Id="DLLBinaries_x64" Guid="B8FF3568-4258-4C2F-AD1E-1FB4499D7BDD">
<File Name="AStar.dll" Source="$(var.ProjectDir)AStar.dll" />
</Component>
<?endif?>
<!--Program GUIDs>
<FlexSim="882D8EE4-E6EA-4D51-8072-4FD62DF4031A">
<FlexSimChinese="48979633-6D0F-488F-9BDF-45CC8F0A9465">
<FlexSimJapanese="2547AB26-7158-4FD3-88DA-0DCEF99F3471">
<FlexSimChineseTraditional="694D5C15-E50B-4B27-80F8-5187E08B2B74">
<FlexSimSpanish="CBFB4902-3D44-4596-8BE8-A4624F5BADDB">
</Program GUIDs-->
<Component Id="ModuleTree" Guid="03C7E4DD-62F2-465C-AC18-D035161881F1">
<File Name="AStar.t" Source="$(var.ProjectDir)AStar.t" />
</Component>
</Directory>
</Directory>
<ComponentGroupRef Id="group_bitmaps"/>
<ComponentGroupRef Id="group_cursors"/>
<ComponentGroupRef Id="group_localization"/>
</Module>
</Wix>