Home | History | Annotate | Download | only in windowsRuntimeInstaller
      1 #!/bin/bash
      2 # Bash script to create the Vulkan Runtime Installer.
      3 
      4 # Create the uinstaller
      5 makensis /DUNINSTALLER InstallerRT.nsi
      6 $TEMP/tempinstaller.exe
      7 mv $TEMP/UninstallVulkanRT.exe .
      8 
      9 # Sign the Uninstaller
     10 # Replace SIGNFILE with your command and necessary args for
     11 # signing an executable. If you don't need to sign the uninstaller,
     12 # you can comment out this line.
     13 ./SIGNFILE ./UninstallVulkanRT.exe
     14 
     15 # Create the RT Installer, using the signed uninstaller
     16 makensis InstallerRT.nsi
     17