mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-12 01:02:42 +08:00
19 lines
399 B
NSIS
19 lines
399 B
NSIS
!ifndef BUILD_UNINSTALLER
|
|
!ifmacrodef licensePage
|
|
!insertmacro skipPageIfUpdated
|
|
!insertmacro licensePage
|
|
!endif
|
|
!endif
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
!ifdef BUILD_UNINSTALLER
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
!endif
|
|
|
|
!macro initMultiUser
|
|
!ifdef INSTALL_MODE_PER_ALL_USERS
|
|
!insertmacro setInstallModePerAllUsers
|
|
!else
|
|
!insertmacro setInstallModePerUser
|
|
!endif
|
|
!macroend |