;Created by nsisFileList 1.4.0 ;2025-09-07T22:07:07 ;Copyright (c) 2022 - 2025 Ingemar Ceicer ;https://gitlab.com/posktomten/nsisfilelist ;Add/Install Files SetOutPath "$INSTDIR" file "D3Dcompiler_47.dll" file "Qt6Core.dll" file "Qt6Gui.dll" file "Qt6Network.dll" file "Qt6Svg.dll" file "Qt6Widgets.dll" file "icon.ico" file "libc++.dll" file "libunwind.dll" file "nsisfilelist.exe" file "opengl32sw.dll" file "unicon.ico" SetOutPath "$INSTDIR\Licenses" file "Licenses\LICENSE" SetOutPath "$INSTDIR\generic" file "generic\qtuiotouchplugin.dll" SetOutPath "$INSTDIR\iconengines" file "iconengines\qsvgicon.dll" SetOutPath "$INSTDIR\imageformats" file "imageformats\qgif.dll" file "imageformats\qicns.dll" file "imageformats\qico.dll" file "imageformats\qjpeg.dll" file "imageformats\qsvg.dll" file "imageformats\qtga.dll" file "imageformats\qtiff.dll" file "imageformats\qwbmp.dll" file "imageformats\qwebp.dll" SetOutPath "$INSTDIR\networkinformation" file "networkinformation\qnetworklistmanager.dll" SetOutPath "$INSTDIR\platforms" file "platforms\qwindows.dll" SetOutPath "$INSTDIR\styles" file "styles\qmodernwindowsstyle.dll" SetOutPath "$INSTDIR\tls" file "tls\qcertonlybackend.dll" file "tls\qschannelbackend.dll" ;Delete files Delete "$INSTDIR\D3Dcompiler_47.dll" Delete "$INSTDIR\Licenses\LICENSE" Delete "$INSTDIR\Qt6Core.dll" Delete "$INSTDIR\Qt6Gui.dll" Delete "$INSTDIR\Qt6Network.dll" Delete "$INSTDIR\Qt6Svg.dll" Delete "$INSTDIR\Qt6Widgets.dll" Delete "$INSTDIR\generic\qtuiotouchplugin.dll" Delete "$INSTDIR\icon.ico" Delete "$INSTDIR\iconengines\qsvgicon.dll" Delete "$INSTDIR\imageformats\qgif.dll" Delete "$INSTDIR\imageformats\qicns.dll" Delete "$INSTDIR\imageformats\qico.dll" Delete "$INSTDIR\imageformats\qjpeg.dll" Delete "$INSTDIR\imageformats\qsvg.dll" Delete "$INSTDIR\imageformats\qtga.dll" Delete "$INSTDIR\imageformats\qtiff.dll" Delete "$INSTDIR\imageformats\qwbmp.dll" Delete "$INSTDIR\imageformats\qwebp.dll" Delete "$INSTDIR\libc++.dll" Delete "$INSTDIR\libunwind.dll" Delete "$INSTDIR\networkinformation\qnetworklistmanager.dll" Delete "$INSTDIR\nsisfilelist.exe" Delete "$INSTDIR\opengl32sw.dll" Delete "$INSTDIR\platforms\qwindows.dll" Delete "$INSTDIR\styles\qmodernwindowsstyle.dll" Delete "$INSTDIR\tls\qcertonlybackend.dll" Delete "$INSTDIR\tls\qschannelbackend.dll" Delete "$INSTDIR\unicon.ico" ;Delete uninstaller Delete "$INSTDIR\*.*" ;Remove installation folders RMDir "$INSTDIR\networkinformation" RMDir "$INSTDIR\imageformats" RMDir "$INSTDIR\iconengines" RMDir "$INSTDIR\platforms" RMDir "$INSTDIR\Licenses" RMDir "$INSTDIR\generic" RMDir "$INSTDIR\styles" RMDir "$INSTDIR\tls" RMDir "$INSTDIR"