|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
| 3 | + <?include Config.wxi?> |
| 4 | + <Fragment> |
| 5 | + <DirectoryRef Id="INSTALLDIR"> |
| 6 | + <!-- Write Installation Path to registry --> |
| 7 | + <Component Id="RegValueProductInstallPath" Guid="{CE589DBA-5C00-419F-AF9E-4E9365260957}"> |
| 8 | + <RegistryValue Id="RegValueInstallPath" |
| 9 | + Root="HKLM" |
| 10 | + Key="Software\$(var.ManufacturerName)\$(var.ProductName)" |
| 11 | + Name="Path" |
| 12 | + Value="[INSTALLDIR]" |
| 13 | + Type="string" |
| 14 | + KeyPath="yes"/> |
| 15 | + </Component> |
| 16 | + <!-- Core product files --> |
| 17 | + <Component Id="CormanLispCore" Guid="{EAED0349-C9F0-454F-91CB-73B80DBBB517}"> |
| 18 | + <File Id="CormanLisp_IDE_Executable" |
| 19 | + Name="CormanLisp.exe" |
| 20 | + DiskId="1" |
| 21 | + Source=".\CormanLisp.exe" /> |
| 22 | + <File Id="CormanLisp_Console_Executable" |
| 23 | + Name="clconsole.exe" |
| 24 | + DiskId="1" |
| 25 | + Source=".\clconsole.exe" /> |
| 26 | + <File Id="CormanLisp_Image" |
| 27 | + Name="CormanLisp.img" |
| 28 | + DiskId="1" |
| 29 | + Source=".\CormanLisp.img" /> |
| 30 | + <File Id="CormanLispServer" |
| 31 | + Name="CormanLispServer.dll" |
| 32 | + DiskId="1" |
| 33 | + Source=".\CormanLispServer.dll" /> |
| 34 | + <File Id="CormanLispConsoleTemplate" |
| 35 | + Name="clconsoleapp.exe" |
| 36 | + DiskId="1" |
| 37 | + Source=".\clconsoleapp.exe" /> |
| 38 | + <File Id="CormanLispGUITemplate" |
| 39 | + Name="clboot.exe" |
| 40 | + DiskId="1" |
| 41 | + Source=".\clboot.exe" /> |
| 42 | + <File Id="CormanLispGUITemplateStatic" |
| 43 | + Name="clbootapp.exe" |
| 44 | + DiskId="1" |
| 45 | + Source=".\clbootapp.exe" /> |
| 46 | + <File Id="CormanLispDLLTemplateStatic" |
| 47 | + Name="dlltemplate.dll" |
| 48 | + DiskId="1" |
| 49 | + Source=".\dlltemplate.dll" /> |
| 50 | + <File Id="CormanLispCoreInit" |
| 51 | + Name="init.lisp" |
| 52 | + DiskId="1" |
| 53 | + Source=".\init.lisp" /> |
| 54 | + <File Id="MakeImgBat" |
| 55 | + Name="makeimg.bat" |
| 56 | + DiskId="1" |
| 57 | + Source=".\makeimg.bat" /> |
| 58 | + <File Id="CormanLispLicense" |
| 59 | + Name="LICENSE.txt" |
| 60 | + DiskId="1" |
| 61 | + Source=".\LICENSE.txt" /> |
| 62 | + </Component> |
| 63 | + <!-- RDNZL Dynamic Library --> |
| 64 | + <Component Id="RDNZL_DLL" |
| 65 | + Guid="{6D17A89E-C877-4DEC-970C-CAC6D41C9261}"> |
| 66 | + <File Id="RDNZL.dll" |
| 67 | + Name="RDNZL.dll" |
| 68 | + DiskId="1" |
| 69 | + Source=".\RDNZL.dll" /> |
| 70 | + </Component> |
| 71 | + <!-- set environmental variable --> |
| 72 | + <Component Id="SetEnv_CORMANLISP_HOME" |
| 73 | + Guid="{307EA98D-C472-4D90-9FD7-A27018E87263}" |
| 74 | + KeyPath="yes"> |
| 75 | + <Environment Id="Env_CORMANLISP_HOME" |
| 76 | + Name="CORMANLISP_HOME" |
| 77 | + Value="[INSTALLDIR]" Action="set" System="yes" /> |
| 78 | + </Component> |
| 79 | + </DirectoryRef> |
| 80 | + <!-- Product Base description --> |
| 81 | + <ComponentGroup Id="ProductBase"> |
| 82 | + <ComponentRef Id="RegValueProductInstallPath" /> |
| 83 | + <ComponentRef Id="CormanLispCore" /> |
| 84 | + <ComponentRef Id="RDNZL_DLL" /> |
| 85 | + </ComponentGroup> |
| 86 | + </Fragment> |
| 87 | +</Wix> |
| 88 | + |
0 commit comments