mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-30 18:24:15 +01:00 
			
		
		
		
	CMake: fix pkg-config behavior when building for Android
This commit is contained in:
		
							parent
							
								
									1d0329a065
								
							
						
					
					
						commit
						19eec22b38
					
				| @ -108,6 +108,9 @@ if (YUZU_USE_BUNDLED_VCPKG) | |||||||
|     if (ANDROID) |     if (ANDROID) | ||||||
|         set(VCPKG_TARGET_TRIPLET "arm64-android") |         set(VCPKG_TARGET_TRIPLET "arm64-android") | ||||||
|         set(ENV{ANDROID_NDK_HOME} "${ANDROID_NDK}") |         set(ENV{ANDROID_NDK_HOME} "${ANDROID_NDK}") | ||||||
|  |         # this is to avoid CMake using the host pkg-config to find the host | ||||||
|  |         # libraries when building for Android targets | ||||||
|  |         set(PKG_CONFIG_EXECUTABLE "aarch64-none-linux-android-pkg-config" CACHE FILEPATH "" FORCE) | ||||||
|         list(APPEND VCPKG_MANIFEST_FEATURES "android") |         list(APPEND VCPKG_MANIFEST_FEATURES "android") | ||||||
|     endif() |     endif() | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -101,6 +101,7 @@ android { | |||||||
|                 arguments "-DENABLE_QT=0", // Don't use QT |                 arguments "-DENABLE_QT=0", // Don't use QT | ||||||
|                         "-DENABLE_SDL2=0", // Don't use SDL |                         "-DENABLE_SDL2=0", // Don't use SDL | ||||||
|                         "-DENABLE_WEB_SERVICE=0", // Don't use telemetry |                         "-DENABLE_WEB_SERVICE=0", // Don't use telemetry | ||||||
|  |                         "-DBUNDLE_SPEEX=ON", | ||||||
|                         "-DANDROID_ARM_NEON=true", // cryptopp requires Neon to work |                         "-DANDROID_ARM_NEON=true", // cryptopp requires Neon to work | ||||||
|                         "-DYUZU_USE_BUNDLED_VCPKG=ON", |                         "-DYUZU_USE_BUNDLED_VCPKG=ON", | ||||||
|                         "-DYUZU_USE_BUNDLED_FFMPEG=ON" |                         "-DYUZU_USE_BUNDLED_FFMPEG=ON" | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user