From 76d56c9ed443f6f51463e9bbf2144b5f505081e5 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Tue, 1 Dec 2020 18:18:15 +0100 Subject: [PATCH] Added python version requirement to cmake. Fixes #5 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5195b026f..37fa51a91 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ pkg_search_module(CAPSTONE REQUIRED capstone) find_package(OpenGL REQUIRED) find_package(LLVM REQUIRED CONFIG) find_package(nlohmann_json REQUIRED) -find_package(Python COMPONENTS Interpreter Development) +find_package(Python 3.8.6 COMPONENTS Interpreter Development) llvm_map_components_to_libnames(demangler)