From 02c76f39e284d36f461173a660de8d48d78df5aa Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Tue, 26 May 2020 22:20:34 +0200 Subject: [PATCH] fix cmake for osx+python --- client/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 505073d7e..c01c199d9 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -304,7 +304,7 @@ target_link_libraries(proxmark3 PRIVATE ${ADDITIONAL_LNK}) # OSX have a hard time compiling python3 dependency with older cmake. -if (PYTHON3EMBED_FOUND AND PYTHON3_FOUND) +if (PYTHON3EMBED_FOUND OR PYTHON3_FOUND) if (NOT CMAKE_VERSION VERSION_LESS 3.13) target_link_directories(proxmark3 PRIVATE ${ADDITIONAL_LNKDIRS}) elseif (APPLE)