axmol/core/math/CMakeLists.txt

31 lines
547 B
CMake
Raw Normal View History

2022-08-11 15:41:10 +08:00
set(_AX_MATH_HEADER
2019-11-23 20:27:39 +08:00
math/Vec2.h
math/Mat4.h
math/Quaternion.h
math/TransformUtils.h
math/Vec4.h
math/AffineTransform.h
math/Vertex.h
2019-11-23 20:27:39 +08:00
math/Vec3.h
math/MathBase.h
2019-11-23 20:27:39 +08:00
math/MathUtil.h
math/Math.h
2021-10-23 23:27:14 +08:00
math/Rect.h
math/FastRNG.h
math/Color.h
2019-11-23 20:27:39 +08:00
)
2022-08-11 15:41:10 +08:00
set(_AX_MATH_SRC
math/AffineTransform.cpp
math/Vertex.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
math/Color.cpp
2019-11-23 20:27:39 +08:00
)