diff options
| author | Mikhail Romanko <me@blankhex.com> | 2025-02-28 10:08:05 +0300 |
|---|---|---|
| committer | Mikhail Romanko <me@blankhex.com> | 2025-02-28 10:08:05 +0300 |
| commit | b0fbfcd69eee59aa2d2428ddd88be158089bf481 (patch) | |
| tree | b975c7bb671834bbfe749b3d715678a4ce671b70 /CMakeLists.txt | |
| parent | 54e1c88f1f9ab89b1c5ca3fda878fd92c1d77191 (diff) | |
| download | bhlib-b0fbfcd69eee59aa2d2428ddd88be158089bf481.tar.gz | |
Split Math.c into smaller files
Friend said that Math.c was too big and complicated.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e0a380..d6037e5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,7 +70,22 @@ set(BH_SOURCE src/Args.c src/Hashmap.c src/IO.c - src/Math.c + src/Math/Box2f.c + src/Math/Box3f.c + src/Math/Line.c + src/Math/Mat3f.c + src/Math/Mat4f.c + src/Math/Misc.c + src/Math/Plane.c + src/Math/Quat4f.c + src/Math/Ray2f.c + src/Math/Ray3f.c + src/Math/Vec2f.c + src/Math/Vec2i.c + src/Math/Vec3f.c + src/Math/Vec3i.c + src/Math/Vec4f.c + src/Math/Vec4i.c src/Queue.c ) |
