From 2707bcf7862727b95324f3c6c0bbc3cb8cac49f7 Mon Sep 17 00:00:00 2001 From: Arnaud TANGUY Date: Sun, 5 Jul 2026 21:42:26 +0200 Subject: [PATCH] python: drop python2/user/system install, use venv --- CMakeLists.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c652f7c0..f95be921 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,16 +34,18 @@ else() include(FetchContent) FetchContent_Declare( "jrl-cmakemodules" - GIT_REPOSITORY "https://github.com/jrl-umi3218/jrl-cmakemodules.git" + GIT_REPOSITORY "https://github.com/arntanguy/jrl-cmakemodules.git" + GIT_TAG 98c3f2676abcd84775863f27a8eabcd864115b49 ) FetchContent_MakeAvailable("jrl-cmakemodules") FetchContent_GetProperties("jrl-cmakemodules" SOURCE_DIR JRL_CMAKE_MODULES) endif() endif() - include(${JRL_CMAKE_MODULES}/base.cmake) -include(${JRL_CMAKE_MODULES}/cython/cython.cmake) include(${JRL_CMAKE_MODULES}/msvc-specific.cmake) +if(${PYTHON_BINDING}) + include(${JRL_CMAKE_MODULES}/cython/cython.cmake) +endif() project(Tasks CXX)