mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Dependencies: Remove GLFW, Add SDL2
citra: Remove GLFW, Add SDL2 FindSDL2: Do not CACHE SDL2_* variables if library is not found EmuWindow_SDL2: Set minimal client area at initialisation time EmuWindow_SDL2: Corrections EmuWindow_SDL2: Fix no decorations on startup on OS X cmake: windows_copy_files
This commit is contained in:
		
							parent
							
								
									2b00bdec1f
								
							
						
					
					
						commit
						ba2a54a9dd
					
				
					 17 changed files with 551 additions and 304 deletions
				
			
		|  | @ -88,9 +88,14 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Linux|FreeBSD|OpenBSD|NetBSD") | |||
| endif() | ||||
| 
 | ||||
| if (Qt5_FOUND AND MSVC) | ||||
|     include(WindowsCopyFiles) | ||||
| 
 | ||||
|     set(Qt5_DLL_DIR "${Qt5_DIR}/../../../bin") | ||||
|     set(Qt5_PLATFORMS_DIR "${Qt5_DIR}/../../../plugins/platforms/") | ||||
|     set(Qt5_DLLS | ||||
|     set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/") | ||||
|     set(PLATFORMS ${DLL_DEST}platforms/) | ||||
| 
 | ||||
|     windows_copy_files(citra-qt ${Qt5_DLL_DIR} ${DLL_DEST} | ||||
|         icudt*.dll | ||||
|         icuin*.dll | ||||
|         icuuc*.dll | ||||
|  | @ -99,24 +104,8 @@ if (Qt5_FOUND AND MSVC) | |||
|         Qt5OpenGL$<$<CONFIG:Debug>:d>.* | ||||
|         Qt5Widgets$<$<CONFIG:Debug>:d>.* | ||||
|     ) | ||||
|     set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/") | ||||
|     set(PLATFORMS ${DLL_DEST}platforms/) | ||||
|     windows_copy_files(citra-qt ${Qt5_PLATFORMS_DIR} ${PLATFORMS} qwindows$<$<CONFIG:Debug>:d>.*) | ||||
| 
 | ||||
|     # windows commandline expects the / to be \ so switch them | ||||
|     string(REPLACE "/" "\\\\" Qt5_DLL_DIR ${Qt5_DLL_DIR}) | ||||
|     string(REPLACE "/" "\\\\" Qt5_PLATFORMS_DIR ${Qt5_PLATFORMS_DIR}) | ||||
|     string(REPLACE "/" "\\\\" DLL_DEST ${DLL_DEST}) | ||||
|     string(REPLACE "/" "\\\\" PLATFORMS ${PLATFORMS}) | ||||
| 
 | ||||
|     # /NJH /NJS /NDL /NFL /NC /NS /NP - Silence any output | ||||
|     # cmake adds an extra check for command success which doesn't work too well with robocopy | ||||
|     # so trick it into thinking the command was successful with the || cmd /c "exit /b 0" | ||||
|     add_custom_command(TARGET citra-qt POST_BUILD | ||||
|         COMMAND robocopy ${Qt5_DLL_DIR} ${DLL_DEST} ${Qt5_DLLS} /NJH /NJS /NDL /NFL /NC /NS /NP || cmd /c "exit /b 0" | ||||
|         COMMAND if not exist ${PLATFORMS} mkdir ${PLATFORMS} 2> nul | ||||
|         COMMAND robocopy ${Qt5_PLATFORMS_DIR} ${PLATFORMS} qwindows$<$<CONFIG:Debug>:d>.* /NJH /NJS /NDL /NFL /NC /NS /NP || cmd /c "exit /b 0" | ||||
|     ) | ||||
|     unset(Qt5_DLLS) | ||||
|     unset(Qt5_DLL_DIR) | ||||
|     unset(Qt5_PLATFORMS_DIR) | ||||
|     unset(DLL_DEST) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue