From dc9be23382117b60add8a043ee517a26d7f068aa Mon Sep 17 00:00:00 2001 From: Christian von Elm Date: Wed, 11 Dec 2024 09:00:50 +0100 Subject: [PATCH] Be more specific about what parts of radare we need some distributions apparently dont ship the r_main library, so include r_asm and r_anal instead. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e0af879b..d2973a67 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,7 +115,7 @@ find_package(CUDAToolkit) if(PkgConfig_FOUND) pkg_check_modules(Audit audit) - pkg_check_modules(Radare IMPORTED_TARGET r_main>=5.8.0) + pkg_check_modules(Radare IMPORTED_TARGET r_asm>=5.8.0 r_anal>=5.8.0) endif()