From 63f2ad90e55c10460c2aa7f92be32e6ac2f227dc Mon Sep 17 00:00:00 2001 From: erwincoumans Date: Tue, 1 Sep 2020 08:09:26 -0700 Subject: Update CMakeLists.txt travis fails due to cmake not finding Python (again...) --- CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 046199b35..ef943b947 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -339,10 +339,7 @@ IF(BUILD_PYBULLET) set(EXACT_PYTHON_VERSION_FLAG EXACT REQUIRED) ENDIF(EXACT_PYTHON_VERSION) # first find the python interpreter - FIND_PACKAGE(PythonInterp ${PYTHON_VERSION_PYBULLET} ${EXACT_PYTHON_VERSION_FLAG}) - # python library should exactly match that of the interpreter - # the following can result in fatal error if you don't have the right python configuration - FIND_PACKAGE(PythonLibs ${PYTHON_VERSION_STRING} EXACT) + FIND_PACKAGE(Python ${PYTHON_VERSION_PYBULLET} ${EXACT_PYTHON_VERSION_FLAG}) ENDIF(BUILD_PYBULLET) OPTION(BUILD_ENET "Set when you want to build apps with enet UDP networking support" ON) -- cgit v1.2.1