diff options
| author | David Pinedo <david@lunarg.com> | 2016-02-02 16:10:39 -0700 |
|---|---|---|
| committer | David Pinedo <david@lunarg.com> | 2016-02-02 16:12:00 -0700 |
| commit | 481878b92d5fed7a69d39b8a7e636afc41511e90 (patch) | |
| tree | 5d352a9ce1a05fccb816824ab1d7413670b46dea /windowsRuntimeInstaller/InstallerRT.nsi | |
| parent | 3bd5eebd38243300ac5006181d1e161da26e19be (diff) | |
| download | usermoji-481878b92d5fed7a69d39b8a7e636afc41511e90.tar.xz | |
windowrtinstaller: use new image files names in installer
Diffstat (limited to 'windowsRuntimeInstaller/InstallerRT.nsi')
| -rw-r--r-- | windowsRuntimeInstaller/InstallerRT.nsi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/windowsRuntimeInstaller/InstallerRT.nsi b/windowsRuntimeInstaller/InstallerRT.nsi index edea8b6a..b256bc13 100644 --- a/windowsRuntimeInstaller/InstallerRT.nsi +++ b/windowsRuntimeInstaller/InstallerRT.nsi @@ -52,7 +52,7 @@ !define errorMessage2 "Uninstalling any installed items and exiting.$\r$\n" # Set the icon -!define ICOFILE "Vulkan.ico" +!define ICOFILE "V.ico" Icon ${ICOFILE} UninstallIcon ${ICOFILE} WindowIcon off @@ -416,7 +416,7 @@ Section "uninstall" Delete /REBOOTOK "$INSTDIR\VULKANRT_LICENSE.rtf" Delete /REBOOTOK "$INSTDIR\LICENSE.txt" Delete /REBOOTOK "$INSTDIR\UninstallVulkanRT.exe" - Delete /REBOOTOK "$INSTDIR\Vulkan.ico" + Delete /REBOOTOK "$INSTDIR\V.ico" Delete /REBOOTOK "$INSTDIR\ConfigLayersAndVulkanDLL.ps1" Delete /REBOOTOK "$INSTDIR\vulkaninfo.exe" @@ -452,17 +452,17 @@ SectionEnd Function brandimage SetOutPath "$TEMP" - SetFileAttributes VulkanLogo.bmp temporary - File VulkanLogo.bmp - SetBrandingImage "$TEMP/VulkanLogo.bmp" + SetFileAttributes V.bmp temporary + File V.bmp + SetBrandingImage "$TEMP/V.bmp" Functionend Function un.brandimage SetOutPath "$TEMP" - SetFileAttributes VulkanLogo.bmp temporary - File VulkanLogo.bmp - SetBrandingImage "$TEMP/VulkanLogo.bmp" + SetFileAttributes V.bmp temporary + File V.bmp + SetBrandingImage "$TEMP/V.bmp" Functionend Function un.DeleteDirIfEmpty |
