;Created by nsisFileList 1.2.9 ;Mon Jun 19 20:27:15 2023 ;Copyright © 2022 - 2023 Ingemar Ceicer ;License GNU General Public License v3.0 ;https://gitlab.com/posktomten/nsisfilelist ;Add/Install Files SetOutPath "$INSTDIR" file "D3Dcompiler_47.dll" file "icon.ico" file "libcrypto-3-x64.dll" file "libgcc_s_seh-1.dll" file "libssl-3-x64.dll" file "libstdc++-6.dll" file "libwinpthread-1.dll" file "nsisfilelist.exe" file "opengl32sw.dll" file "Qt6Core.dll" file "Qt6Gui.dll" file "Qt6Network.dll" file "Qt6Svg.dll" file "Qt6Widgets.dll" file "unicon.ico" 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\License" file "License\LICENSE.txt" SetOutPath "$INSTDIR\networkinformation" file "networkinformation\qnetworklistmanager.dll" SetOutPath "$INSTDIR\platforms" file "platforms\qwindows.dll" SetOutPath "$INSTDIR\styles" file "styles\qwindowsvistastyle.dll" SetOutPath "$INSTDIR\tls" file "tls\qcertonlybackend.dll" file "tls\qopensslbackend.dll" file "tls\qschannelbackend.dll" SetOutPath "$INSTDIR\generic" file "generic\qtuiotouchplugin.dll" ;Delete files Delete "$INSTDIR\*.*" Delete "$INSTDIR\iconengines\*.*" Delete "$INSTDIR\imageformats\*.*" Delete "$INSTDIR\License\*.*" Delete "$INSTDIR\networkinformation\*.*" Delete "$INSTDIR\platforms\*.*" Delete "$INSTDIR\styles\*.*" Delete "$INSTDIR\tls\*.*" Delete "$INSTDIR\generic\*.*" ;Remove installation folders RMDir "$INSTDIR\iconengines" RMDir "$INSTDIR\imageformats" RMDir "$INSTDIR\License" RMDir "$INSTDIR\networkinformation" RMDir "$INSTDIR\platforms" RMDir "$INSTDIR\styles" RMDir "$INSTDIR\tls" RMDir "$INSTDIR\generic" RMDir "$INSTDIR"