From 09ddd17339619b16c51e995a6f1c346158bbd4e2 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Thu, 7 Sep 2017 12:22:35 -0700 Subject: [PATCH] don't build pybullet unless asked for it, see this: https://travis-ci.org/bulletphysics/bullet3/jobs/273018723 --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0937ea1aa..e24f3dfe5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -315,9 +315,6 @@ FIND_PACKAGE(PythonInterp ${PYTHON_VERSION_PYBULLET} ${EXACT_PYTHON_VERSION_FLAG # python library should exactly match that of the interpreter FIND_PACKAGE(PythonLibs ${PYTHON_VERSION_STRING} EXACT) SET(DEFAULT_BUILD_PYBULLET OFF) -IF(PYTHONLIBS_FOUND) - SET(DEFAULT_BUILD_PYBULLET ON) -ENDIF(PYTHONLIBS_FOUND) OPTION(BUILD_PYBULLET "Set when you want to build pybullet (Python bindings for Bullet)" ${DEFAULT_BUILD_PYBULLET}) OPTION(BUILD_ENET "Set when you want to build apps with enet UDP networking support" ON)