axmol/core/math/CMakeLists.txt

30 lines
542 B
CMake
Raw Normal View History

2019-11-23 20:27:39 +08:00
set(COCOS_MATH_HEADER
math/Vec2.h
2020-08-04 00:14:35 +08:00
math/Mat3.h
2019-11-23 20:27:39 +08:00
math/Mat4.h
math/Quaternion.h
math/TransformUtils.h
math/Vec4.h
math/CCAffineTransform.h
math/CCVertex.h
math/Vec3.h
math/CCMathBase.h
math/MathUtil.h
math/CCMath.h
2021-10-23 23:27:14 +08:00
math/Rect.h
2019-11-23 20:27:39 +08:00
)
set(COCOS_MATH_SRC
math/CCAffineTransform.cpp
math/CCVertex.cpp
2020-08-04 00:14:35 +08:00
math/Mat3.cpp
2019-11-23 20:27:39 +08:00
math/Mat4.cpp
math/MathUtil.cpp
math/Quaternion.cpp
math/TransformUtils.cpp
math/Vec2.cpp
math/Vec3.cpp
math/Vec4.cpp
2021-10-23 23:27:14 +08:00
math/Rect.cpp
2019-11-23 20:27:39 +08:00
)