|
@@ -7,6 +7,7 @@ set(SRC
|
|
"src/Buffer.c"
|
|
"src/Buffer.c"
|
|
"src/Logger.c"
|
|
"src/Logger.c"
|
|
"src/Matrix.c"
|
|
"src/Matrix.c"
|
|
|
|
+ "src/Plane.c"
|
|
"src/Quaternion.c"
|
|
"src/Quaternion.c"
|
|
"src/Random.c"
|
|
"src/Random.c"
|
|
"src/Utility.c"
|
|
"src/Utility.c"
|
|
@@ -14,7 +15,6 @@ set(SRC
|
|
#"src/BitArray.cpp"
|
|
#"src/BitArray.cpp"
|
|
#"src/Box.cpp"
|
|
#"src/Box.cpp"
|
|
#"src/Frustum.cpp"
|
|
#"src/Frustum.cpp"
|
|
- #"src/Plane.cpp"
|
|
|
|
#"src/SpinLock.cpp"
|
|
#"src/SpinLock.cpp"
|
|
#"src/View.cpp"
|
|
#"src/View.cpp"
|
|
)
|
|
)
|
|
@@ -24,6 +24,7 @@ set(SRC_TESTS
|
|
"test/Test.c"
|
|
"test/Test.c"
|
|
"test/modules/BufferTests.c"
|
|
"test/modules/BufferTests.c"
|
|
"test/modules/MatrixTests.c"
|
|
"test/modules/MatrixTests.c"
|
|
|
|
+ "test/modules/PlaneTests.c"
|
|
"test/modules/QuaternionTests.c"
|
|
"test/modules/QuaternionTests.c"
|
|
"test/modules/RandomTests.c"
|
|
"test/modules/RandomTests.c"
|
|
"test/modules/UtilityTests.c"
|
|
"test/modules/UtilityTests.c"
|
|
@@ -36,7 +37,6 @@ set(SRC_TESTS
|
|
#"test/modules/LinkedListTests.cpp"
|
|
#"test/modules/LinkedListTests.cpp"
|
|
#"test/modules/ListTests.cpp"
|
|
#"test/modules/ListTests.cpp"
|
|
#"test/modules/MatrixStackTests.cpp"
|
|
#"test/modules/MatrixStackTests.cpp"
|
|
- #"test/modules/PlaneTests.cpp"
|
|
|
|
#"test/modules/RingBufferTests.cpp"
|
|
#"test/modules/RingBufferTests.cpp"
|
|
#"test/modules/StackTests.cpp"
|
|
#"test/modules/StackTests.cpp"
|
|
#"test/modules/ThreadTests.cpp"
|
|
#"test/modules/ThreadTests.cpp"
|
|
@@ -100,6 +100,7 @@ target_sources(core PUBLIC
|
|
./include/core/Check.h
|
|
./include/core/Check.h
|
|
./include/core/Logger.h
|
|
./include/core/Logger.h
|
|
./include/core/Matrix.h
|
|
./include/core/Matrix.h
|
|
|
|
+ ./include/core/Plane.h
|
|
./include/core/Quaternion.h
|
|
./include/core/Quaternion.h
|
|
./include/core/Random.h
|
|
./include/core/Random.h
|
|
./include/core/Types.h
|
|
./include/core/Types.h
|
|
@@ -112,7 +113,6 @@ target_sources(core PUBLIC
|
|
# ./include/core/LinkedList.hpp
|
|
# ./include/core/LinkedList.hpp
|
|
# ./include/core/List.hpp
|
|
# ./include/core/List.hpp
|
|
# ./include/core/MatrixStack.hpp
|
|
# ./include/core/MatrixStack.hpp
|
|
-# ./include/core/Plane.hpp
|
|
|
|
# ./include/core/ProbingHashMap.hpp
|
|
# ./include/core/ProbingHashMap.hpp
|
|
# ./include/core/RingBuffer.hpp
|
|
# ./include/core/RingBuffer.hpp
|
|
# ./include/core/Stack.hpp
|
|
# ./include/core/Stack.hpp
|