add more doc to builder-product.cfg

This commit is contained in:
Mario Fetka
2019-09-20 12:41:25 +02:00
parent 9d18a4bfaf
commit cb8289d5dd
3 changed files with 67 additions and 13 deletions

View File

@@ -145,7 +145,7 @@ copy "$IniCfgFile$" "$InstallDir$"
;
; set_link
; name: $ProductId$
; target: <path to the program>
; target: $InstallDir$\$ProgramExecutable$
; parameters:
; working_dir: $InstallDir$
; icon_file:
@@ -159,7 +159,7 @@ copy "$IniCfgFile$" "$InstallDir$"
;
; set_link
; name: $ProductId$
; target: <path to the program>
; target: $InstallDir$\$ProgramExecutable$
; parameters: <some_param>
; working_dir: $InstallDir$
; icon_file: <path to icon file>

View File

@@ -92,7 +92,7 @@ else
comment "Patch Registry"
Registry_install /32Bit
comment "Create shortcuts"
LinkFolder_install
LinkFolder_install_32
comment "File Type Association"
FileTypeAssoc_install
endif
@@ -108,7 +108,7 @@ else
comment "Patch Registry"
Registry_install /64Bit
comment "Create shortcuts"
LinkFolder_install
LinkFolder_install_64
comment "File Type Association"
FileTypeAssoc_install
endif
@@ -193,7 +193,7 @@ copy "$IniCfgFile$" "$InstallDir64$"
; set "name2" = REG_DWORD:0001
; set "name3" = REG_BINARY:00 af 99 cd
[LinkFolder_install]
[LinkFolder_install_32]
; Example of deleting a folder from AllUsers startmenu:
;
; set_basefolder common_programs
@@ -206,9 +206,9 @@ copy "$IniCfgFile$" "$InstallDir64$"
;
; set_link
; name: $ProductId$
; target: <path to the program>
; target: $InstallDir32$\$ProgramExecutable32$
; parameters:
; working_dir: $InstallDir$
; working_dir: $InstallDir32$
; icon_file:
; icon_index:
; end_link
@@ -220,9 +220,43 @@ copy "$IniCfgFile$" "$InstallDir64$"
;
; set_link
; name: $ProductId$
; target: <path to the program>
; target: $InstallDir32$\$ProgramExecutable32$
; parameters: <some_param>
; working_dir: $InstallDir$
; working_dir: $InstallDir32$
; icon_file: <path to icon file>
; icon_index: 2
; end_link
[LinkFolder_install_64]
; Example of deleting a folder from AllUsers startmenu:
;
; set_basefolder common_programs
; delete_subfolder $ProductId$
;
; Example of creating an shortcut to the installed exe in AllUsers startmenu:
;
; set_basefolder common_programs
; set_subfolder $ProductId$
;
; set_link
; name: $ProductId$
; target: $InstallDir64$\$ProgramExecutable64$
; parameters:
; working_dir: $InstallDir64$
; icon_file:
; icon_index:
; end_link
;
; Example of creating an shortcut to the installed exe on AllUsers desktop:
;
; set_basefolder common_desktopdirectory
; set_subfolder ""
;
; set_link
; name: $ProductId$
; target: $InstallDir64$\$ProgramExecutable64$
; parameters: <some_param>
; working_dir: $InstallDir64$
; icon_file: <path to icon file>
; icon_index: 2
; end_link