From 03a2ca750c1b1ed5fb1f2d27a6bb297826582493 Mon Sep 17 00:00:00 2001 From: Jacob Alexander Date: Tue, 30 Aug 2016 20:03:21 -0700 Subject: [PATCH] Adding CMake requirement check for Python 3 - Should correctly handle 2 + 3 installations - Tested working on CentOS 6.8 and Arch --- Lib/CMake/kll.cmake | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Lib/CMake/kll.cmake b/Lib/CMake/kll.cmake index aae3d31..5846b27 100644 --- a/Lib/CMake/kll.cmake +++ b/Lib/CMake/kll.cmake @@ -14,6 +14,11 @@ if ( "${MacroModule}" STREQUAL "PartialMap" ) +### +# Python 3 is required for kll +# +find_package ( PythonInterp 3 REQUIRED ) + ### # KLL Installation (Make sure repo has been cloned)