remove pre-build proto/grpc files (they differ for each platform and proto/grpc version)

This commit is contained in:
erwincoumans
2018-09-07 15:44:33 -07:00
parent 12409f1118
commit 5164f2f9a7
17 changed files with 48 additions and 39063 deletions

View File

@@ -9599,8 +9599,12 @@ PyInit_pybullet(void)
#ifdef BT_USE_EGL
initpybullet_egl(void)
#else
#ifdef BT_PYBULLET_GRPC
initpybullet_grpc(void)
#else
initpybullet(void)
#endif //BT_USE_EGL
#endif //BT_PYBULLET_GRPC
#endif
{
PyObject* m;
@@ -9609,9 +9613,13 @@ initpybullet(void)
#else
#ifdef BT_USE_EGL
m = Py_InitModule3("pybullet_egl", SpamMethods, "Python bindings for Bullet");
#else
#ifdef BT_PYBULLET_GRPC
m = Py_InitModule3("pybullet_grpc", SpamMethods, "Python bindings for Bullet");
#else
m = Py_InitModule3("pybullet", SpamMethods, "Python bindings for Bullet");
#endif //BT_USE_EGL
#endif //BT_PYBULLET_GRPC
#endif
#if PY_MAJOR_VERSION >= 3