CMakeLists.txt 661 B

1234567891011121314151617181920
  1. IF (BUILD_BLEND_DEMO OR INTERNAL_UPDATE_SERIALIZATION_STRUCTURES)
  2. SUBDIRS(BlenderSerialize )
  3. ENDIF()
  4. IF(INTERNAL_UPDATE_SERIALIZATION_STRUCTURES)
  5. # makesdna and HeaderGenerator are for advanced use only
  6. # makesdna can re-generate the binary DNA representing the Bullet serialization structures
  7. # Be very careful modifying any of this, otherwise the .bullet format becomes incompatible
  8. SUBDIRS ( BulletFileLoader BulletXmlWorldImporter BulletWorldImporter HeaderGenerator makesdna)
  9. ELSE(INTERNAL_UPDATE_SERIALIZATION_STRUCTURES)
  10. SUBDIRS ( BulletFileLoader BulletXmlWorldImporter BulletWorldImporter )
  11. ENDIF (INTERNAL_UPDATE_SERIALIZATION_STRUCTURES)