From ab83fc1e713f3d83975140496d07dace96d797f9 Mon Sep 17 00:00:00 2001 From: offtkp Date: Wed, 18 Oct 2023 00:34:35 +0300 Subject: [PATCH] Replace android_ndk_import_module_cpufeatures macro with its declaration --- third_party/cryptopp/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/third_party/cryptopp/CMakeLists.txt b/third_party/cryptopp/CMakeLists.txt index 887e80d2..9c410050 100644 --- a/third_party/cryptopp/CMakeLists.txt +++ b/third_party/cryptopp/CMakeLists.txt @@ -443,7 +443,8 @@ find_package(Threads) target_link_libraries(cryptopp PRIVATE ${CMAKE_THREAD_LIBS_INIT}) if(ANDROID) - include(AndroidNdkModules) - android_ndk_import_module_cpufeatures() + include_directories(${ANDROID_NDK}/sources/android/cpufeatures) + add_library(cpufeatures ${ANDROID_NDK}/sources/android/cpufeatures/cpu-features.c) + target_link_libraries(cpufeatures dl) target_link_libraries(cryptopp PRIVATE cpufeatures) endif()