mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #4295 from MerryMage/macOS-libusb
CMakeLists: Do not search for system libusb on macOS
This commit is contained in:
		
						commit
						f16a94fb39
					
				@ -330,14 +330,15 @@ elseif(SDL2_FOUND)
 | 
				
			|||||||
endif()
 | 
					endif()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Ensure libusb is properly configured (based on dolphin libusb include)
 | 
					# Ensure libusb is properly configured (based on dolphin libusb include)
 | 
				
			||||||
include(FindPkgConfig)
 | 
					if(NOT APPLE)
 | 
				
			||||||
find_package(LibUSB)
 | 
					    include(FindPkgConfig)
 | 
				
			||||||
 | 
					    find_package(LibUSB)
 | 
				
			||||||
 | 
					endif()
 | 
				
			||||||
if (NOT LIBUSB_FOUND)
 | 
					if (NOT LIBUSB_FOUND)
 | 
				
			||||||
    add_subdirectory(externals/libusb)
 | 
					    add_subdirectory(externals/libusb)
 | 
				
			||||||
    set(LIBUSB_LIBRARIES usb)
 | 
					    set(LIBUSB_LIBRARIES usb)
 | 
				
			||||||
endif()
 | 
					endif()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
# Prefer the -pthread flag on Linux.
 | 
					# Prefer the -pthread flag on Linux.
 | 
				
			||||||
set(THREADS_PREFER_PTHREAD_FLAG ON)
 | 
					set(THREADS_PREFER_PTHREAD_FLAG ON)
 | 
				
			||||||
find_package(Threads REQUIRED)
 | 
					find_package(Threads REQUIRED)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user