Blame view

ios/cocos2d/cocos/math/CMakeLists.txt 520 Bytes
520389e3   xiaoyu   接入cocos源码,编译未通过,继续修改
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  set(COCOS_MATH_HEADER
      math/Vec2.h
      math/Mat4.h
      math/Quaternion.h
      math/TransformUtils.h
      math/Vec4.h
      math/CCAffineTransform.h
      math/CCGeometry.h
      math/CCVertex.h
      math/Vec3.h
      math/CCMathBase.h
      math/MathUtil.h
      math/CCMath.h
      )
  
  set(COCOS_MATH_SRC
      math/CCAffineTransform.cpp
      math/CCGeometry.cpp
      math/CCVertex.cpp
      math/Mat4.cpp
      math/MathUtil.cpp
      math/Quaternion.cpp
      math/TransformUtils.cpp
      math/Vec2.cpp
      math/Vec3.cpp
      math/Vec4.cpp
      )