プロジェクト

全般

プロフィール

wix_patch.xml.in

n.kawauchi, 2017/03/28 19:06

 
1
<CPackWiXPatch>
2
	<CPackWiXFragment Id="#PRODUCT">
3
		<CustomAction Id="PostinstAction"
4
			ExeCommand="idlcompile.bat"
5
      Execute="deferred" Impersonate="no"
6
			FileKey="CM_FP_component.@PROJECT_NAME@.idlcompile.bat"/>
7
		<CustomAction Id="PrermAction"
8
			ExeCommand="delete.bat"
9
      Execute="deferred" Impersonate="no"
10
			FileKey="CM_FP_component.@PROJECT_NAME@.delete.bat"/>
11
		<InstallExecuteSequence>
12
			<Custom Action="PostinstAction"
13
        Before="InstallFinalize">
14
				NOT Installed 
15
			</Custom>
16
		</InstallExecuteSequence>
17
		<InstallExecuteSequence>
18
			<Custom Action="PrermAction"
19
        Before="RemoveFiles">
20
				Installed 
21
			</Custom>
22
		</InstallExecuteSequence>
23
	</CPackWiXFragment>
24
</CPackWiXPatch>