cmake_consistency_check_config.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import os
  2. IGNORE = (
  3. "/test/",
  4. "/tests/gtests/",
  5. "/release/",
  6. # specific source files
  7. "extern/bullet2/src/BulletCollision/CollisionDispatch/btBox2dBox2dCollisionAlgorithm.cpp",
  8. "extern/bullet2/src/BulletCollision/CollisionDispatch/btConvex2dConvex2dAlgorithm.cpp",
  9. "extern/bullet2/src/BulletCollision/CollisionDispatch/btInternalEdgeUtility.cpp",
  10. "extern/bullet2/src/BulletCollision/CollisionShapes/btBox2dShape.cpp",
  11. "extern/bullet2/src/BulletCollision/CollisionShapes/btConvex2dShape.cpp",
  12. "extern/bullet2/src/BulletDynamics/Character/btKinematicCharacterController.cpp",
  13. "extern/bullet2/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.cpp",
  14. "extern/bullet2/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.cpp",
  15. "intern/audaspace/SRC/AUD_SRCResampleFactory.cpp",
  16. "intern/audaspace/SRC/AUD_SRCResampleReader.cpp",
  17. "extern/bullet2/src/BulletCollision/CollisionDispatch/btBox2dBox2dCollisionAlgorithm.h",
  18. "extern/bullet2/src/BulletCollision/CollisionDispatch/btConvex2dConvex2dAlgorithm.h",
  19. "extern/bullet2/src/BulletCollision/CollisionDispatch/btInternalEdgeUtility.h",
  20. "extern/bullet2/src/BulletCollision/CollisionShapes/btBox2dShape.h",
  21. "extern/bullet2/src/BulletCollision/CollisionShapes/btConvex2dShape.h",
  22. "extern/bullet2/src/BulletDynamics/Character/btKinematicCharacterController.h",
  23. "extern/bullet2/src/BulletDynamics/ConstraintSolver/btHinge2Constraint.h",
  24. "extern/bullet2/src/BulletDynamics/ConstraintSolver/btUniversalConstraint.h",
  25. "extern/carve/include/carve/config.h",
  26. "extern/carve/include/carve/random/random.h",
  27. "extern/carve/patches/files/config.h",
  28. "extern/carve/patches/files/random.h",
  29. "intern/audaspace/SRC/AUD_SRCResampleFactory.h",
  30. "intern/audaspace/SRC/AUD_SRCResampleReader.h",
  31. )
  32. UTF8_CHECK = True
  33. SOURCE_DIR = os.path.normpath(os.path.abspath(os.path.normpath(os.path.join(os.path.dirname(__file__), "..", ".."))))
  34. # doesn't have to exist, just use as reference
  35. BUILD_DIR = os.path.normpath(os.path.abspath(os.path.normpath(os.path.join(SOURCE_DIR, "..", "build"))))