mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
19 lines
508 B
CMake
19 lines
508 B
CMake
SUBDIRS( HelloWorld BasicDemo )
|
|
IF(BUILD_BULLET3)
|
|
SET(DL dl)
|
|
IF(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
SET(OSDEF -D_LINUX)
|
|
ELSE(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
IF(APPLE)
|
|
SET(OSDEF -D_DARWIN)
|
|
ELSE(APPLE)
|
|
SET(OSDEF -D_BSD)
|
|
SET(DL "")
|
|
ENDIF(APPLE)
|
|
ENDIF(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
SUBDIRS( ExampleBrowser RobotSimulator SharedMemory ThirdPartyLibs/Gwen ThirdPartyLibs/BussIK ThirdPartyLibs/clsocket OpenGLWindow )
|
|
ENDIF()
|
|
IF(BUILD_PYBULLET)
|
|
SUBDIRS(pybullet)
|
|
ENDIF(BUILD_PYBULLET)
|