Merge pull request #1335 from erwincoumans/master

manually apply pull request 457 PR #457
This commit is contained in:
erwincoumans
2017-09-24 16:38:23 -07:00
committed by GitHub
5 changed files with 17 additions and 3 deletions

View File

@@ -2,17 +2,21 @@ Bullet Physics is created by Erwin Coumans with contributions from the following
AMD AMD
Apple Apple
Yunfei Bai
Steve Baker Steve Baker
Gino van den Bergen Gino van den Bergen
Jeff Bingham
Nicola Candussi Nicola Candussi
Erin Catto Erin Catto
Lawrence Chai Lawrence Chai
Erwin Coumans Erwin Coumans
Christer Ericson
Disney Animation Disney Animation
Benjamin Ellenberger
Christer Ericson
Google Google
Dirk Gregorius Dirk Gregorius
Marcus Hennix Marcus Hennix
Jasmine Hsu
MBSim Development Team MBSim Development Team
Takahiro Harada Takahiro Harada
Simon Hobbs Simon Hobbs
@@ -20,6 +24,7 @@ John Hsu
Ole Kniemeyer Ole Kniemeyer
Jay Lee Jay Lee
Francisco Leon Francisco Leon
lunkhound
Vsevolod Klementjev Vsevolod Klementjev
Phil Knight Phil Knight
John McCutchan John McCutchan
@@ -32,9 +37,9 @@ Russel Smith
Sony Sony
Jakub Stephien Jakub Stephien
Marten Svanfeldt Marten Svanfeldt
Jie Tan
Pierre Terdiman Pierre Terdiman
Steven Thompson Steven Thompson
Tamas Umenhoffer Tamas Umenhoffer
Yunfei Bai
If your name is missing, please send an email to erwin.coumans@gmail.com or file an issue at http://github.com/bulletphysics/bullet3 If your name is missing, please send an email to erwin.coumans@gmail.com or file an issue at http://github.com/bulletphysics/bullet3

View File

@@ -449,7 +449,11 @@ configure_file ( ${CMAKE_CURRENT_SOURCE_DIR}/BulletConfig.cmake.in
${CMAKE_CURRENT_BINARY_DIR}/BulletConfig.cmake ${CMAKE_CURRENT_BINARY_DIR}/BulletConfig.cmake
@ONLY ESCAPE_QUOTES @ONLY ESCAPE_QUOTES
) )
install ( FILES ${CMAKE_CURRENT_SOURCE_DIR}/UseBullet.cmake OPTION(INSTALL_CMAKE_FILES "Install generated CMake files" ON)
IF (INSTALL_CMAKE_FILES)
install ( FILES ${CMAKE_CURRENT_SOURCE_DIR}/UseBullet.cmake
${CMAKE_CURRENT_BINARY_DIR}/BulletConfig.cmake ${CMAKE_CURRENT_BINARY_DIR}/BulletConfig.cmake
DESTINATION ${BULLET_CONFIG_CMAKE_PATH} DESTINATION ${BULLET_CONFIG_CMAKE_PATH}
) )
ENDIF (INSTALL_CMAKE_FILES)

View File

@@ -89,6 +89,8 @@ myfiles =
"../PhysicsServerCommandProcessor.cpp", "../PhysicsServerCommandProcessor.cpp",
"../PhysicsServerCommandProcessor.h", "../PhysicsServerCommandProcessor.h",
"../b3PluginManager.cpp", "../b3PluginManager.cpp",
"../PhysicsDirect.cpp",
"../PhysicsClient.cpp",
"../TinyRendererVisualShapeConverter.cpp", "../TinyRendererVisualShapeConverter.cpp",
"../TinyRendererVisualShapeConverter.h", "../TinyRendererVisualShapeConverter.h",
"../../TinyRenderer/geometry.cpp", "../../TinyRenderer/geometry.cpp",

View File

@@ -80,6 +80,8 @@ myfiles =
"../PhysicsServerCommandProcessor.cpp", "../PhysicsServerCommandProcessor.cpp",
"../PhysicsServerCommandProcessor.h", "../PhysicsServerCommandProcessor.h",
"../b3PluginManager.cpp", "../b3PluginManager.cpp",
"../PhysicsDirect.cpp",
"../PhysicsClient.cpp",
"../TinyRendererVisualShapeConverter.cpp", "../TinyRendererVisualShapeConverter.cpp",
"../TinyRendererVisualShapeConverter.h", "../TinyRendererVisualShapeConverter.h",
"../../TinyRenderer/geometry.cpp", "../../TinyRenderer/geometry.cpp",

View File

@@ -178,6 +178,7 @@ project ("Test_PhysicsServerLoopBack")
"../../examples/SharedMemory/PhysicsServerCommandProcessor.cpp", "../../examples/SharedMemory/PhysicsServerCommandProcessor.cpp",
"../../examples/SharedMemory/PhysicsServerCommandProcessor.h", "../../examples/SharedMemory/PhysicsServerCommandProcessor.h",
"../../examples/SharedMemory/b3PluginManager.cpp", "../../examples/SharedMemory/b3PluginManager.cpp",
"../../examples/SharedMemory/PhysicsDirect.cpp",
"../../examples/SharedMemory/PhysicsLoopBack.cpp", "../../examples/SharedMemory/PhysicsLoopBack.cpp",
"../../examples/SharedMemory/PhysicsLoopBack.h", "../../examples/SharedMemory/PhysicsLoopBack.h",
"../../examples/SharedMemory/PhysicsLoopBackC_API.cpp", "../../examples/SharedMemory/PhysicsLoopBackC_API.cpp",