mirror of
				https://github.com/JakubMelka/PDF4QT.git
				synced 2025-06-05 21:59:17 +02:00 
			
		
		
		
	Issue #15: Wix installer - initial commit
This commit is contained in:
		| @@ -103,7 +103,8 @@ plugins.files = $$DESTDIR/pdfplugins/ObjectInspectorPlugin.dll \ | ||||
|                 $$DESTDIR/pdfplugins/DimensionsPlugin.dll \ | ||||
|                 $$DESTDIR/pdfplugins/SoftProofingPlugin.dll \ | ||||
|                 $$DESTDIR/pdfplugins/RedactPlugin.dll \ | ||||
|                 $$DESTDIR/pdfplugins/AudioBookPlugin.dll | ||||
|                 $$DESTDIR/pdfplugins/AudioBookPlugin.dll \ | ||||
|                 $$DESTDIR/pdfplugins/SignaturePlugin.dll | ||||
|  | ||||
| plugins.path = $$DESTDIR/install/pdfplugins | ||||
| plugins.CONFIG += no_check_exist | ||||
|   | ||||
| @@ -25,6 +25,6 @@ SUBDIRS += \ | ||||
|     OutputPreviewPlugin \ | ||||
|     ObjectInspectorPlugin \ | ||||
|     AudioBookPlugin \ | ||||
| 	SignaturePlugin | ||||
|     SignaturePlugin | ||||
|  | ||||
|  | ||||
|   | ||||
							
								
								
									
										25
									
								
								WixInstaller/PDF4QT.sln
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								WixInstaller/PDF4QT.sln
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | ||||
|  | ||||
| Microsoft Visual Studio Solution File, Format Version 12.00 | ||||
| # Visual Studio Version 17 | ||||
| VisualStudioVersion = 17.2.32526.322 | ||||
| MinimumVisualStudioVersion = 10.0.40219.1 | ||||
| Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "PDF4QT", "PDF4QT.wixproj", "{45030FAF-48F0-491A-87B3-CC9DB74CF389}" | ||||
| EndProject | ||||
| Global | ||||
| 	GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||||
| 		Debug|x86 = Debug|x86 | ||||
| 		Release|x86 = Release|x86 | ||||
| 	EndGlobalSection | ||||
| 	GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||||
| 		{45030FAF-48F0-491A-87B3-CC9DB74CF389}.Debug|x86.ActiveCfg = Debug|x86 | ||||
| 		{45030FAF-48F0-491A-87B3-CC9DB74CF389}.Debug|x86.Build.0 = Debug|x86 | ||||
| 		{45030FAF-48F0-491A-87B3-CC9DB74CF389}.Release|x86.ActiveCfg = Release|x86 | ||||
| 		{45030FAF-48F0-491A-87B3-CC9DB74CF389}.Release|x86.Build.0 = Release|x86 | ||||
| 	EndGlobalSection | ||||
| 	GlobalSection(SolutionProperties) = preSolution | ||||
| 		HideSolutionNode = FALSE | ||||
| 	EndGlobalSection | ||||
| 	GlobalSection(ExtensibilityGlobals) = postSolution | ||||
| 		SolutionGuid = {56E2C17B-8E0F-45F1-A769-FA8D9C16F459} | ||||
| 	EndGlobalSection | ||||
| EndGlobal | ||||
							
								
								
									
										43
									
								
								WixInstaller/PDF4QT.wixproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								WixInstaller/PDF4QT.wixproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,43 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||
|   <PropertyGroup> | ||||
|     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||||
|     <Platform Condition=" '$(Platform)' == '' ">x86</Platform> | ||||
|     <ProductVersion>3.10</ProductVersion> | ||||
|     <ProjectGuid>45030faf-48f0-491a-87b3-cc9db74cf389</ProjectGuid> | ||||
|     <SchemaVersion>2.0</SchemaVersion> | ||||
|     <OutputName>PDF4QT</OutputName> | ||||
|     <OutputType>Package</OutputType> | ||||
|   </PropertyGroup> | ||||
|   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> | ||||
|     <OutputPath>bin\$(Configuration)\</OutputPath> | ||||
|     <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> | ||||
|     <DefineConstants>Debug</DefineConstants> | ||||
|   </PropertyGroup> | ||||
|   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> | ||||
|     <OutputPath>bin\$(Configuration)\</OutputPath> | ||||
|     <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> | ||||
|   </PropertyGroup> | ||||
|   <ItemGroup> | ||||
|     <Compile Include="Product.wxs" /> | ||||
|   </ItemGroup> | ||||
|   <ItemGroup> | ||||
|     <WixExtension Include="WixUIExtension"> | ||||
|       <HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath> | ||||
|       <Name>WixUIExtension</Name> | ||||
|     </WixExtension> | ||||
|   </ItemGroup> | ||||
|   <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " /> | ||||
|   <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " /> | ||||
|   <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' "> | ||||
|     <Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" /> | ||||
|   </Target> | ||||
|   <!-- | ||||
| 	To modify your build process, add your task inside one of the targets below and uncomment it. | ||||
| 	Other similar extension points exist, see Wix.targets. | ||||
| 	<Target Name="BeforeBuild"> | ||||
| 	</Target> | ||||
| 	<Target Name="AfterBuild"> | ||||
| 	</Target> | ||||
| 	--> | ||||
| </Project> | ||||
							
								
								
									
										273
									
								
								WixInstaller/Product.wxs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										273
									
								
								WixInstaller/Product.wxs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,273 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | ||||
| 	<Product Id="*" Name="PDF4QT" Language="1033" Version="$(var.MyVersion)" Manufacturer="Jakub Melka" UpgradeCode="26336d8a-b2e7-44fc-9a73-68aa99900c7a"> | ||||
| 		<Package Id="*" InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Manufacturer="Jakub Melka" Keywords="pdf,editor,viewer" /> | ||||
|  | ||||
| 		<MajorUpgrade DowngradeErrorMessage="A newer version of PDF4QT is already installed." /> | ||||
| 		<MediaTemplate EmbedCab="yes" /> | ||||
|  | ||||
| 		<Feature Id="feature_PDF4QT_Framework" Title="PDF4QT" Level="1" ConfigurableDirectory="INSTALLFOLDER" Absent="disallow" AllowAdvertise="no" Display="expand" Description="Framework libraries and other data files required to run all other programs."> | ||||
| 			<ComponentGroupRef Id="PDF4QT_Framework" /> | ||||
| 			<ComponentRef Id="ProgramMenuDir" /> | ||||
|  | ||||
| 			<Feature Id="feature_PDF4QT_ViewerProfi" Absent="allow" AllowAdvertise="no" Title="Viewer Profi"  Display="expand" Level="1" Description="Advanced PDF viewer/editor with many functions, such as annotation editing, form filling, signature verification, and many optional plugins."> | ||||
| 				<ComponentGroupRef Id="PDF4QT_ViewerProfi"/> | ||||
| 				 | ||||
| 				<Feature Id="feature_PDF4QT_ViewerProfi_Plugins" Absent="allow" AllowAdvertise="no" Title="Plugin Pack" Level="1" Description="Plugin pack for Viewer Profi. Contains additional editing features, such as audio book conversion, signatures, soft-proofing, dimensions, object inspector, redaction etc."> | ||||
| 					<ComponentGroupRef Id="PDF4QT_ViewerProfi_Plugins"/> | ||||
| 				</Feature> | ||||
| 			</Feature> | ||||
| 			 | ||||
| 			<Feature Id="feature_PDF4QT_ViewerLite" Absent="allow" AllowAdvertise="no" Title="Viewer Lite" Level="1" Description="Simple PDF viewer with basic functions."> | ||||
| 				<ComponentGroupRef Id="PDF4QT_ViewerLite"/> | ||||
| 			</Feature> | ||||
|  | ||||
| 			<Feature Id="feature_PDF4QT_DocPageOrganizer" Absent="allow" AllowAdvertise="no" Title="DocPage Organizer" Level="1" Description="Document page organizer (split/merge documents, insert/remove/move/clone pages, insert blank pages and images to create a new document)."> | ||||
| 				<ComponentGroupRef Id="PDF4QT_DocPageOrganizer"/> | ||||
| 			</Feature> | ||||
|  | ||||
| 			<Feature Id="feature_PDF4QT_DocDiff" Absent="allow" AllowAdvertise="no" Title="DocDiff" Level="1" Description="Compare content of two documents."> | ||||
| 				<ComponentGroupRef Id="PDF4QT_DocDiff"/> | ||||
| 			</Feature> | ||||
| 		</Feature> | ||||
|  | ||||
| 		<UIRef Id="WixUI_FeatureTree" /> | ||||
| 	</Product> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<Directory Id="TARGETDIR" Name="SourceDir"> | ||||
| 			<Directory Id="ProgramFilesFolder"> | ||||
| 				<Directory Id="INSTALLFOLDER" Name="PDF4QT" /> | ||||
| 			</Directory> | ||||
| 			<Directory Id="DesktopFolder" Name="Desktop"/> | ||||
| 			<Directory Id="ProgramMenuFolder" Name="Programs"> | ||||
| 				<Directory Id="ProgramMenuDir" Name="PDF4QT"> | ||||
| 					<Component Id="ProgramMenuDir" Guid="{33A118A2-C455-45C1-9E0C-710750A71335}"> | ||||
| 						<RemoveFolder Id="ProgramMenuDir" On="uninstall" /> | ||||
| 						<RegistryValue Root="HKMU" Key="Software\[Manufacturer]\[ProductName]" Type="string" Value="" KeyPath="yes" /> | ||||
| 					</Component> | ||||
| 				</Directory> | ||||
| 			</Directory> | ||||
| 		</Directory> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<ComponentGroup Id="PDF4QT_Framework"> | ||||
| 			<Component Id="cmp9F6DED952E5836E703990F81D1E8FBA1" Directory="INSTALLFOLDER" Guid="{0E7D21A2-D331-4361-8499-042939DCA6CE}"> | ||||
| 				<File Id="fil4B32DD093E5D748C6DB9C5E48F8BF8E5" KeyPath="yes" Source="$(var.MyInstallDir)\libcrypto-1_1-x64.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp2B0BBC8908FE104E7FE849B6C9361904" Directory="INSTALLFOLDER" Guid="{1CAAB454-8CEE-450D-8252-01594BD82F40}"> | ||||
| 				<File Id="filCC63CF9D6F210D0049D050EB06297019" KeyPath="yes" Source="$(var.MyInstallDir)\libssl-1_1-x64.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpD902D80240D92E0BA5C21A7CBFFEB34D" Directory="INSTALLFOLDER" Guid="{E54B48ED-6C16-4501-B580-4B75A996BC9C}"> | ||||
| 				<File Id="fil0756A2ECB744DFD7A8F4B4CA126C0EBF" KeyPath="yes" Source="$(var.MyInstallDir)\Pdf4QtLib.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpA99D3E7760DA61048DF14141B017863B" Directory="INSTALLFOLDER" Guid="{7EFA71AF-99EC-40D8-9C07-4B99EB3FAECB}"> | ||||
| 				<File Id="fil0CB615EFFEBF4E5461A1C353B0A551E2" KeyPath="yes" Source="$(var.MyInstallDir)\Pdf4QtViewer.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpFC336ADC1B94F4FDF274016576CE9B0E" Directory="INSTALLFOLDER" Guid="{E5C28C55-AC18-4E71-B84E-82745BC0360B}"> | ||||
| 				<File Id="filB2658D09DD3F25C5086312C63CF0EC25" KeyPath="yes" Source="$(var.MyInstallDir)\PdfTool.exe" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpF0FEC7B047A9EF88B91034625A4B72D5" Directory="INSTALLFOLDER" Guid="{D8024726-7864-42BE-9E38-DFF782AC5C97}"> | ||||
| 				<File Id="filDC95499FD8CAC724929CA0787CEF1B2A" KeyPath="yes" Source="$(var.MyInstallDir)\Qt5Core.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp050DF4770B1929CBEAE0CFBB356D2D69" Directory="INSTALLFOLDER" Guid="{E881017F-DF56-440F-B5AA-6D6A01ECCC42}"> | ||||
| 				<File Id="filBCC4B05880EF2A800D781C7B7940965A" KeyPath="yes" Source="$(var.MyInstallDir)\Qt5Gui.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp2976DEFCAE8108C105050DAB5A3D3A48" Directory="INSTALLFOLDER" Guid="{69DD98CF-191F-4E16-9475-7201CF05630D}"> | ||||
| 				<File Id="fil6DD6F1AE79FEDC9E52E0749631111421" KeyPath="yes" Source="$(var.MyInstallDir)\Qt5Network.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpC13D7C1424C0CFB6E95228856D95D3D9" Directory="INSTALLFOLDER" Guid="{C8045343-5FD3-4349-B4E6-B770F4D28381}"> | ||||
| 				<File Id="fil2CA384D87C1BB95F8A238BBA31619E88" KeyPath="yes" Source="$(var.MyInstallDir)\Qt5PrintSupport.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp4B93CB96FAE49543B866F795FE91BFEC" Directory="INSTALLFOLDER" Guid="{8324FA84-C4A4-47E8-849B-62D5FD5F2B4A}"> | ||||
| 				<File Id="fil5F8A2BE13AA960438448DF87A4072AAB" KeyPath="yes" Source="$(var.MyInstallDir)\Qt5Svg.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp3AD372C0B04F2ABE9AC2727A7081AB26" Directory="INSTALLFOLDER" Guid="{82AAD343-207F-4812-BC7E-0F17D9F6B8CD}"> | ||||
| 				<File Id="fil5173D52970E73A7538E9BBBFAE7B99E7" KeyPath="yes" Source="$(var.MyInstallDir)\Qt5TextToSpeech.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp5B6C586D52A908C25B5737846082756D" Directory="INSTALLFOLDER" Guid="{C686E727-51FF-4A40-A7FE-E1A2130FDAAF}"> | ||||
| 				<File Id="fil78D8BEDD274D38919549601FD4207964" KeyPath="yes" Source="$(var.MyInstallDir)\Qt5Widgets.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpBFA5992B001FE5030576C759A7E73B36" Directory="INSTALLFOLDER" Guid="{0C29A2C2-20B4-4C10-BAD9-394400D5C434}"> | ||||
| 				<File Id="filD521FB419CDFF1E24BEA4A6633FC55E5" KeyPath="yes" Source="$(var.MyInstallDir)\Qt5WinExtras.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp068E3E76B6D48D83E1D7057FDB790B6F" Directory="INSTALLFOLDER" Guid="{686836FB-9324-4849-AEFC-3AC5575BE2EC}"> | ||||
| 				<File Id="fil4ED97731700A4540C059B2EB501F71CF" KeyPath="yes" Source="$(var.MyInstallDir)\Qt5Xml.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp2C0364AAE5A0954DAEB83F9E188A2BB3" Directory="dir_iconengines" Guid="{2A149233-0A00-466A-A962-D28D3D5DE53C}"> | ||||
| 				<File Id="fil29E77D886B32E2F1B916B9E3F0195C26" KeyPath="yes" Source="$(var.MyInstallDir)\iconengines\qsvgicon.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp0152BE011DF4E67C4512C9D0A8C60888" Directory="dir_imageformats" Guid="{33659C3C-A04E-47C3-855B-EB3771F210F3}"> | ||||
| 				<File Id="fil649B275EC6B658A61A105D64DC8168EB" KeyPath="yes" Source="$(var.MyInstallDir)\imageformats\qgif.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpF6EE55E5CE3C50150CCFDFF6EEE08175" Directory="dir_imageformats" Guid="{A8B580B2-FF02-4C3F-8226-FC8888D0F088}"> | ||||
| 				<File Id="filE37408FDA282BFA5631B76510BAEB1A1" KeyPath="yes" Source="$(var.MyInstallDir)\imageformats\qicns.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpEA51558A16DBE53D741665F43C7DAC68" Directory="dir_imageformats" Guid="{97AB6FB0-A714-42DC-810D-4276F0C81398}"> | ||||
| 				<File Id="filC526DE84AB9A38B170F8A4FFA2283989" KeyPath="yes" Source="$(var.MyInstallDir)\imageformats\qico.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp70839222F8B2AA4D47956200F3CC955D" Directory="dir_imageformats" Guid="{71C0EF13-5693-4CEC-B690-92872DECAC76}"> | ||||
| 				<File Id="filAB0DEB5CDCE9F61F77AB7C327EAE0453" KeyPath="yes" Source="$(var.MyInstallDir)\imageformats\qjpeg.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp06640857364709607F282497EA5EAF8F" Directory="dir_imageformats" Guid="{A036D6FA-5473-40BC-BE2A-3698830A5E11}"> | ||||
| 				<File Id="fil188DB6C9B8A091F12E6335E9E0DF2134" KeyPath="yes" Source="$(var.MyInstallDir)\imageformats\qsvg.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpF2F9646DBF1F8E70AE64D949F1E82C52" Directory="dir_imageformats" Guid="{28B2A1D2-DD40-4ADE-9ECF-AC2226D7331A}"> | ||||
| 				<File Id="fil8CD039DE3BBC3BF2E9A4E962AE3E1F88" KeyPath="yes" Source="$(var.MyInstallDir)\imageformats\qtga.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp9AA3D7DCAA0D712359805A379B9D55F4" Directory="dir_imageformats" Guid="{E934CB6B-D99D-42AC-86BC-61CB8B88EB6A}"> | ||||
| 				<File Id="fil8A6BE62770349947A54EFE2E6D7DD270" KeyPath="yes" Source="$(var.MyInstallDir)\imageformats\qtiff.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpE83561BCC57177869AD16B94D4FF1656" Directory="dir_imageformats" Guid="{EE55D0FD-5843-4F0B-952A-9B22757C461A}"> | ||||
| 				<File Id="filEB2D852577201BB9F619AA814A00692F" KeyPath="yes" Source="$(var.MyInstallDir)\imageformats\qwebp.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp893EFF82D727F74847CD545558FE34F9" Directory="dir_platforms" Guid="{8A574FB6-B003-45E6-80F2-0989BEE14A63}"> | ||||
| 				<File Id="filD985A5747A9613717D389F1D3912E702" KeyPath="yes" Source="$(var.MyInstallDir)\platforms\qwindows.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp1F6A9FEFF5D251DFBC44AD0CA2E5F15F" Directory="dir_printsupport" Guid="{99E4B888-7C59-46E0-B029-425B31CC3506}"> | ||||
| 				<File Id="fil7FFA665062EEFAB14830AD907B819838" KeyPath="yes" Source="$(var.MyInstallDir)\printsupport\windowsprintersupport.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmp68D943E1439A6058C3156551EE80749B" Directory="dir_styles" Guid="{61EF162D-B428-4A5C-BE6E-8BB5F8A45BEB}"> | ||||
| 				<File Id="fil5C550A2AFF340D0DC4E7D7A674142A92" KeyPath="yes" Source="$(var.MyInstallDir)\styles\qwindowsvistastyle.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpAF41975820F68671CC4EF8EDCC9B3135" Directory="dir_texttospeech" Guid="{305900CC-4483-4E0F-B611-C32FD9E01021}"> | ||||
| 				<File Id="fil06D2402D329F17F0309E6FB70C194C77" KeyPath="yes" Source="$(var.MyInstallDir)\texttospeech\qtexttospeech_sapi.dll" /> | ||||
| 			</Component> | ||||
| 		</ComponentGroup> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<ComponentGroup Id="PDF4QT_ViewerProfi"> | ||||
| 			<Component Id="cmp188606497BACB312973D307393C8D3AF" Directory="INSTALLFOLDER" Guid="{52D3CF62-F556-4E7A-BCEB-75E5E65ED786}"> | ||||
| 				<File Id="fil382C8CB744D292C33773197891A6A24E" KeyPath="yes" Source="$(var.MyInstallDir)\Pdf4QtViewerProfi.exe"> | ||||
| 					<Shortcut Id="PDF4QT_ViewerProfi_Shortcut" Directory="ProgramMenuDir" Name="PDF4QT Viewer Profi" Description="Advanced PDF viewer/editor" WorkingDirectory="INSTALLFOLDER" Icon="PDF4QT_VP_Icon.exe" IconIndex="0" Advertise="yes"/> | ||||
| 				</File> | ||||
| 				<ProgId Id='default_profi.pdf' Description='PDF Document'> | ||||
| 					<Extension Id='pdf' ContentType='application/pdf'> | ||||
| 						<Verb Id='open' Command='Open' TargetFile='fil382C8CB744D292C33773197891A6A24E' Argument='"%1"' /> | ||||
| 					</Extension> | ||||
| 				</ProgId> | ||||
| 			</Component> | ||||
| 		</ComponentGroup> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<Icon Id="PDF4QT_VP_Icon.exe" SourceFile="$(var.MyInstallDir)\Pdf4QtViewerProfi.exe"/> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<ComponentGroup Id="PDF4QT_ViewerLite"> | ||||
| 			<Component Id="cmp891B7ED2D028329F4330A2C46EF56E40" Directory="INSTALLFOLDER" Guid="{2D222775-6DA7-43E6-B212-3A142622190C}"> | ||||
| 				<File Id="fil84879C1A606C2A34C05AE592C1DC0E90" KeyPath="yes" Source="$(var.MyInstallDir)\Pdf4QtViewerLite.exe"> | ||||
| 					<Shortcut Id="PDF4QT_ViewerLite_Shortcut" Directory="ProgramMenuDir" Name="PDF4QT Viewer Lite" Description="Simple PDF viewer" WorkingDirectory="INSTALLFOLDER" Icon="PDF4QT_VL_Icon.exe" IconIndex="0" Advertise="yes"/> | ||||
| 				</File> | ||||
| 				<ProgId Id='default_lite.pdf' Description='PDF Document'> | ||||
| 					<Extension Id='pdf' ContentType='application/pdf'> | ||||
| 						<Verb Id='open' Command='Open' TargetFile='fil84879C1A606C2A34C05AE592C1DC0E90' Argument='"%1"' /> | ||||
| 					</Extension> | ||||
| 				</ProgId> | ||||
| 			</Component> | ||||
| 		</ComponentGroup> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<Icon Id="PDF4QT_VL_Icon.exe" SourceFile="$(var.MyInstallDir)\Pdf4QtViewerLite.exe"/> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<ComponentGroup Id="PDF4QT_DocPageOrganizer"> | ||||
| 			<Component Id="cmp8323DF5465210B8C0ACBA71BACE6D2C9" Directory="INSTALLFOLDER" Guid="{9D248BEE-BA78-4050-B362-0694B11AA326}"> | ||||
| 				<File Id="fil82A5A2280AE5FAD2BDA0C3AD486F406A" KeyPath="yes" Source="$(var.MyInstallDir)\Pdf4QtDocPageOrganizer.exe"> | ||||
| 					<Shortcut Id="PDF4QT_DPO_Shortcut" Directory="ProgramMenuDir" Name="PDF4QT DocPage Organizer" Description="PDF Document page organizer" WorkingDirectory="INSTALLFOLDER" Icon="PDF4QT_DPO_Icon.exe" IconIndex="0" Advertise="yes"/> | ||||
| 				</File> | ||||
| 			</Component> | ||||
| 		</ComponentGroup> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<Icon Id="PDF4QT_DPO_Icon.exe" SourceFile="$(var.MyInstallDir)\Pdf4QtDocPageOrganizer.exe"/> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<ComponentGroup Id="PDF4QT_DocDiff"> | ||||
| 			<Component Id="cmpF7C26D935DF63326446EC8C73E470F3A" Directory="INSTALLFOLDER" Guid="{067D40E9-4FAE-472D-BCC3-B92A23CA0028}"> | ||||
| 				<File Id="fil71267885AEBCC05676DCDCB1DC20FB06" KeyPath="yes" Source="$(var.MyInstallDir)\Pdf4QtDocDiff.exe"> | ||||
| 					<Shortcut Id="PDF4QT_DD_Shortcut" Directory="ProgramMenuDir" Name="PDF4QT DocDiff" Description="Compare two similar PDF documents" WorkingDirectory="INSTALLFOLDER" Icon="PDF4QT_DD_Icon.exe" IconIndex="0" Advertise="yes"/> | ||||
| 				</File> | ||||
| 			</Component> | ||||
| 		</ComponentGroup> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<Icon Id="PDF4QT_DD_Icon.exe" SourceFile="$(var.MyInstallDir)\Pdf4QtDocDiff.exe"/> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<ComponentGroup Id="PDF4QT_ViewerProfi_Plugins"> | ||||
| 			<Component Id="cmpF3C540FEAD14FBC1B56CE4C51B406A28" Directory="dir_pdfplugins" Guid="{06D159D2-0F34-417E-9134-7E9195E697A0}"> | ||||
| 				<File Id="fil997E8EDEF5A10B95CDD22A2FBE5C2BB1" KeyPath="yes" Source="$(var.MyInstallDir)\pdfplugins\AudioBookPlugin.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpF9D15999CE76257F81B3657786ECD7FC" Directory="dir_pdfplugins" Guid="{0D422903-CBDD-47CF-B7A9-6C829BD64717}"> | ||||
| 				<File Id="filA4EB847149AD9797EC4690DF431D965A" KeyPath="yes" Source="$(var.MyInstallDir)\pdfplugins\DimensionsPlugin.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpD017EA235D1054DA8923D79D2DA71AE2" Directory="dir_pdfplugins" Guid="{9058F5AB-6248-406D-8634-5657552DA6D2}"> | ||||
| 				<File Id="fil0BC208AC84C3193B6D965C718BDE3216" KeyPath="yes" Source="$(var.MyInstallDir)\pdfplugins\ObjectInspectorPlugin.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpB8D18490C7E0DD17CE3F6AD04A29272B" Directory="dir_pdfplugins" Guid="{054CE9AB-A1FA-45E2-A75E-1D4DDE76D156}"> | ||||
| 				<File Id="fil498E762C3D8146E6796E82F7D241B3C2" KeyPath="yes" Source="$(var.MyInstallDir)\pdfplugins\OutputPreviewPlugin.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpA01525CA78D9C8444D9294D1794F9DF7" Directory="dir_pdfplugins" Guid="{2B85C746-062F-4D93-9978-0E1206FF20C4}"> | ||||
| 				<File Id="filEF3ACEBCEC22112A274E8FA8A5BB901B" KeyPath="yes" Source="$(var.MyInstallDir)\pdfplugins\RedactPlugin.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpB575C63D30CE3C077C592568D6098685" Directory="dir_pdfplugins" Guid="{421A01AF-BB7F-467C-A3C6-ED9F41BABC02}"> | ||||
| 				<File Id="fil8609396BCF21562397E229247EDC4CCF" KeyPath="yes" Source="$(var.MyInstallDir)\pdfplugins\SoftProofingPlugin.dll" /> | ||||
| 			</Component> | ||||
| 			<Component Id="cmpSignaturePlugin" Directory="dir_pdfplugins" Guid="{BC0EA59D-3E89-402C-BB0A-93869214AB19}"> | ||||
| 				<File Id="filSignaturePlugin" KeyPath="yes" Source="$(var.MyInstallDir)\pdfplugins\SignaturePlugin.dll" /> | ||||
| 			</Component> | ||||
| 		</ComponentGroup> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<DirectoryRef Id="INSTALLFOLDER"> | ||||
| 			<Directory Id="dir_imageformats" Name="imageformats" /> | ||||
| 		</DirectoryRef> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<DirectoryRef Id="INSTALLFOLDER"> | ||||
| 			<Directory Id="dir_printsupport" Name="printsupport" /> | ||||
| 		</DirectoryRef> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<DirectoryRef Id="INSTALLFOLDER"> | ||||
| 			<Directory Id="dir_pdfplugins" Name="pdfplugins" /> | ||||
| 		</DirectoryRef> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<DirectoryRef Id="INSTALLFOLDER"> | ||||
| 			<Directory Id="dir_styles" Name="styles" /> | ||||
| 		</DirectoryRef> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<DirectoryRef Id="INSTALLFOLDER"> | ||||
| 			<Directory Id="dir_texttospeech" Name="texttospeech" /> | ||||
| 		</DirectoryRef> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<DirectoryRef Id="INSTALLFOLDER"> | ||||
| 			<Directory Id="dir_iconengines" Name="iconengines" /> | ||||
| 		</DirectoryRef> | ||||
| 	</Fragment> | ||||
|  | ||||
| 	<Fragment> | ||||
| 		<DirectoryRef Id="INSTALLFOLDER"> | ||||
| 			<Directory Id="dir_platforms" Name="platforms" /> | ||||
| 		</DirectoryRef> | ||||
| 	</Fragment> | ||||
| </Wix> | ||||
		Reference in New Issue
	
	Block a user