cmake_consistency_check_config.py 2.2 KB

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