CMakeLists.txt 520 B

123456789101112131415161718192021222324252627
  1. set(COCOS_MATH_HEADER
  2. math/Vec2.h
  3. math/Mat4.h
  4. math/Quaternion.h
  5. math/TransformUtils.h
  6. math/Vec4.h
  7. math/CCAffineTransform.h
  8. math/CCGeometry.h
  9. math/CCVertex.h
  10. math/Vec3.h
  11. math/CCMathBase.h
  12. math/MathUtil.h
  13. math/CCMath.h
  14. )
  15. set(COCOS_MATH_SRC
  16. math/CCAffineTransform.cpp
  17. math/CCGeometry.cpp
  18. math/CCVertex.cpp
  19. math/Mat4.cpp
  20. math/MathUtil.cpp
  21. math/Quaternion.cpp
  22. math/TransformUtils.cpp
  23. math/Vec2.cpp
  24. math/Vec3.cpp
  25. math/Vec4.cpp
  26. )