mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-11 18:00:06 +00:00
37f6df2c32
improved cmake build system for updating the serialization structures
16 lines
543 B
CMake
16 lines
543 B
CMake
|
|
IF(INTERNAL_UPDATE_SERIALIZATION_STRUCTURES)
|
|
|
|
# makesdna and HeaderGenerator are for advanced use only
|
|
# makesdna can re-generate the binary DNA representing the Bullet serialization structures
|
|
# Be very careful modifying any of this, otherwise the .bullet format becomes incompatible
|
|
|
|
SUBDIRS ( BulletFileLoader BulletWorldImporter BlenderSerialize HeaderGenerator makesdna)
|
|
|
|
ELSE(INTERNAL_UPDATE_SERIALIZATION_STRUCTURES)
|
|
|
|
SUBDIRS ( BulletFileLoader BulletWorldImporter )
|
|
|
|
ENDIF (INTERNAL_UPDATE_SERIALIZATION_STRUCTURES)
|
|
|