mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Merge pull request #2918 from jroweboy/remove-debug
Remove excess debug dlls for mingw build
This commit is contained in:
		
						commit
						4af793c591
					
				
					 1 changed files with 6 additions and 0 deletions
				
			
		|  | @ -131,6 +131,12 @@ after_build: | ||||||
|           foreach ($file in $MingwDLLs) { |           foreach ($file in $MingwDLLs) { | ||||||
|             Copy-Item -path "C:/msys64/mingw64/bin/$file" -force -destination "$RELEASE_DIST" |             Copy-Item -path "C:/msys64/mingw64/bin/$file" -force -destination "$RELEASE_DIST" | ||||||
|           } |           } | ||||||
|  |           # the above list copies a few extra debug dlls that aren't needed (thanks globbing patterns!) | ||||||
|  |           # so we can remove them by hardcoding another list of extra dlls to remove | ||||||
|  |           $DebugDLLs = "libicudtd*.dll","libicuind*.dll","libicuucd*.dll" | ||||||
|  |           foreach ($file in $DebugDLLs) { | ||||||
|  |             Remove-Item -path "$RELEASE_DIST/$file" | ||||||
|  |           } | ||||||
| 
 | 
 | ||||||
|           # copy the qt windows plugin dll to platforms |           # copy the qt windows plugin dll to platforms | ||||||
|           Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/platforms/qwindows.dll" -force -destination "$RELEASE_DIST/platforms" |           Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/platforms/qwindows.dll" -force -destination "$RELEASE_DIST/platforms" | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue