mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 10:44:49 +01:00 
			
		
		
		
	externals/ffmpeg: set the cmake variable twice ...
... to avoid leaving variable undefined in the current scope
This commit is contained in:
		
							parent
							
								
									3ae9258efe
								
							
						
					
					
						commit
						476637d143
					
				
							
								
								
									
										3
									
								
								externals/CMakeLists.txt
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								externals/CMakeLists.txt
									
									
									
									
										vendored
									
									
								
							| @ -126,4 +126,7 @@ endif() | ||||
| if (YUZU_USE_BUNDLED_FFMPEG) | ||||
|     add_subdirectory(ffmpeg) | ||||
|     set(FFmpeg_PATH "${FFmpeg_PATH}" PARENT_SCOPE) | ||||
|     set(FFmpeg_LDFLAGS "${FFmpeg_LDFLAGS}" PARENT_SCOPE) | ||||
|     set(FFmpeg_LIBRARIES "${FFmpeg_LIBRARIES}" PARENT_SCOPE) | ||||
|     set(FFmpeg_INCLUDE_DIR "${FFmpeg_INCLUDE_DIR}" PARENT_SCOPE) | ||||
| endif() | ||||
|  | ||||
							
								
								
									
										15
									
								
								externals/ffmpeg/CMakeLists.txt
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								externals/ffmpeg/CMakeLists.txt
									
									
									
									
										vendored
									
									
								
							| @ -192,7 +192,7 @@ if (NOT WIN32) | ||||
| else(WIN32) | ||||
|     # Use yuzu FFmpeg binaries | ||||
|     set(FFmpeg_EXT_NAME "ffmpeg-4.4") | ||||
|     set(FFmpeg_PATH "${CMAKE_BINARY_DIR}/externals/${FFmpeg_EXT_NAME}" PARENT_SCOPE) | ||||
|     set(FFmpeg_PATH "${CMAKE_BINARY_DIR}/externals/${FFmpeg_EXT_NAME}") | ||||
|     download_bundled_external("ffmpeg/" ${FFmpeg_EXT_NAME} "") | ||||
|     set(FFmpeg_FOUND YES) | ||||
|     set(FFmpeg_INCLUDE_DIR "${FFmpeg_PATH}/include" CACHE PATH "Path to FFmpeg headers" FORCE) | ||||
| @ -200,10 +200,15 @@ else(WIN32) | ||||
|     set(FFmpeg_LDFLAGS "" CACHE STRING "FFmpeg linker flags" FORCE) | ||||
|     set(FFmpeg_DLL_DIR "${FFmpeg_PATH}/bin" CACHE PATH "Path to FFmpeg dll's" FORCE) | ||||
|     set(FFmpeg_LIBRARIES | ||||
|         ${FFmpeg_LIBRARY_DIR}/swscale.lib | ||||
|         ${FFmpeg_LIBRARY_DIR}/avcodec.lib | ||||
|         ${FFmpeg_LIBRARY_DIR}/avutil.lib | ||||
|         CACHE PATH "Paths to FFmpeg libraries" FORCE) | ||||
|     ${FFmpeg_LIBRARY_DIR}/swscale.lib | ||||
|     ${FFmpeg_LIBRARY_DIR}/avcodec.lib | ||||
|     ${FFmpeg_LIBRARY_DIR}/avutil.lib | ||||
|     CACHE PATH "Paths to FFmpeg libraries" FORCE) | ||||
|     # exported variables | ||||
|     set(FFmpeg_PATH "${FFmpeg_PATH}" PARENT_SCOPE) | ||||
|     set(FFmpeg_LDFLAGS "${FFmpeg_LDFLAGS}" PARENT_SCOPE) | ||||
|     set(FFmpeg_LIBRARIES "${FFmpeg_LIBRARIES}" PARENT_SCOPE) | ||||
|     set(FFmpeg_INCLUDE_DIR "${FFmpeg_INCLUDE_DIR}" PARENT_SCOPE) | ||||
| endif(WIN32) | ||||
| 
 | ||||
| unset(FFmpeg_COMPONENTS) | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user