mirror of
https://github.com/bulletphysics/bullet3.git
synced 2026-09-18 16:24:28 +00:00
Added Demos/ThreadingDemo showing how to use the cross-platform btThreadSupportInterface under Windows. Added Demos/ParticlesOpenCL showing how to run the NVidia particle demo under OpenCL implementations by AMD, NVidia and MiniCL (CPU)
16 lines
199 B
CMake
16 lines
199 B
CMake
IF(BUILD_MINICL_OPENCL_DEMOS)
|
|
SUBDIRS( MiniCL )
|
|
ENDIF()
|
|
|
|
IF(BUILD_AMD_OPENCL_DEMOS)
|
|
SUBDIRS(AMD)
|
|
ENDIF()
|
|
|
|
IF(BUILD_NVIDIA_OPENCL_DEMOS)
|
|
SUBDIRS(NVidia)
|
|
ENDIF()
|
|
|
|
IF(APPLE)
|
|
SUBDIRS(Apple)
|
|
ENDIF()
|