|
@@ -6,7 +6,7 @@ set(CMAKE_C_STANDARD 23)
|
|
set(SRC
|
|
set(SRC
|
|
"src/Logger.c"
|
|
"src/Logger.c"
|
|
"src/Utility.c"
|
|
"src/Utility.c"
|
|
- #"src/Buffer.cpp"
|
|
|
|
|
|
+ "src/Buffer.c"
|
|
#"src/Clock.cpp"
|
|
#"src/Clock.cpp"
|
|
#"src/Random.cpp"
|
|
#"src/Random.cpp"
|
|
#"src/BitArray.cpp"
|
|
#"src/BitArray.cpp"
|
|
@@ -27,34 +27,34 @@ set(SRC
|
|
set(SRC_TESTS
|
|
set(SRC_TESTS
|
|
"test/Main.c"
|
|
"test/Main.c"
|
|
"test/Test.c"
|
|
"test/Test.c"
|
|
- #"test/modules/ArrayTests.cpp"
|
|
|
|
- #"test/modules/ArrayStringTests.cpp"
|
|
|
|
|
|
+ "test/modules/BufferTests.c"
|
|
"test/modules/UtilityTests.c"
|
|
"test/modules/UtilityTests.c"
|
|
#"test/modules/ArrayListTests.cpp"
|
|
#"test/modules/ArrayListTests.cpp"
|
|
|
|
+ #"test/modules/ArrayStringTests.cpp"
|
|
|
|
+ #"test/modules/ArrayTests.cpp"
|
|
#"test/modules/BitArrayTests.cpp"
|
|
#"test/modules/BitArrayTests.cpp"
|
|
- #"test/modules/MathTests.cpp"
|
|
|
|
- #"test/modules/ListTests.cpp"
|
|
|
|
- #"test/modules/LinkedListTests.cpp"
|
|
|
|
- #"test/modules/HashMapTests.cpp"
|
|
|
|
- #"test/modules/StackTests.cpp"
|
|
|
|
- #"test/modules/RingBufferTests.cpp"
|
|
|
|
- #"test/modules/ComponentsTests.cpp"
|
|
|
|
- #"test/modules/VectorTests.cpp"
|
|
|
|
- #"test/modules/QuaternionTests.cpp"
|
|
|
|
- #"test/modules/MatrixTests.cpp"
|
|
|
|
#"test/modules/BoxTests.cpp"
|
|
#"test/modules/BoxTests.cpp"
|
|
#"test/modules/BufferedValueTests.cpp"
|
|
#"test/modules/BufferedValueTests.cpp"
|
|
- #"test/modules/PlaneTests.cpp"
|
|
|
|
|
|
+ #"test/modules/ClockTests.cpp"
|
|
|
|
+ #"test/modules/ColorTests.cpp"
|
|
|
|
+ #"test/modules/ComponentsTests.cpp"
|
|
|
|
+ #"test/modules/FileReaderTests.cpp"
|
|
#"test/modules/FrustumTests.cpp"
|
|
#"test/modules/FrustumTests.cpp"
|
|
- #"test/modules/ViewTests.cpp"
|
|
|
|
|
|
+ #"test/modules/HashMapTests.cpp"
|
|
|
|
+ #"test/modules/HashedStringTests.cpp"
|
|
|
|
+ #"test/modules/LinkedListTests.cpp"
|
|
|
|
+ #"test/modules/ListTests.cpp"
|
|
|
|
+ #"test/modules/MathTests.cpp"
|
|
#"test/modules/MatrixStackTests.cpp"
|
|
#"test/modules/MatrixStackTests.cpp"
|
|
- #"test/modules/ColorTests.cpp"
|
|
|
|
- #"test/modules/BufferTests.cpp"
|
|
|
|
- #"test/modules/ClockTests.cpp"
|
|
|
|
|
|
+ #"test/modules/MatrixTests.cpp"
|
|
|
|
+ #"test/modules/PlaneTests.cpp"
|
|
|
|
+ #"test/modules/QuaternionTests.cpp"
|
|
#"test/modules/RandomTests.cpp"
|
|
#"test/modules/RandomTests.cpp"
|
|
|
|
+ #"test/modules/RingBufferTests.cpp"
|
|
|
|
+ #"test/modules/StackTests.cpp"
|
|
#"test/modules/ThreadTests.cpp"
|
|
#"test/modules/ThreadTests.cpp"
|
|
- #"test/modules/FileReaderTests.cpp"
|
|
|
|
- #"test/modules/HashedStringTests.cpp"
|
|
|
|
|
|
+ #"test/modules/VectorTests.cpp"
|
|
|
|
+ #"test/modules/ViewTests.cpp"
|
|
)
|
|
)
|
|
|
|
|
|
set(SRC_PERFORMANCE
|
|
set(SRC_PERFORMANCE
|
|
@@ -168,40 +168,40 @@ target_sources(core PUBLIC
|
|
FILE_SET HEADERS
|
|
FILE_SET HEADERS
|
|
BASE_DIRS include
|
|
BASE_DIRS include
|
|
FILES
|
|
FILES
|
|
-# ./include/core/data/Stack.hpp
|
|
|
|
-# ./include/core/data/HashMap.hpp
|
|
|
|
-# ./include/core/data/Components.hpp
|
|
|
|
-# ./include/core/data/ArrayList.hpp
|
|
|
|
-# ./include/core/data/ProbingHashMap.hpp
|
|
|
|
-# ./include/core/data/List.hpp
|
|
|
|
-# ./include/core/data/LinkedList.hpp
|
|
|
|
-# ./include/core/data/BitArray.hpp
|
|
|
|
-# ./include/core/data/Array.hpp
|
|
|
|
-# ./include/core/data/RingBuffer.hpp
|
|
|
|
-# ./include/core/thread/Thread.hpp
|
|
|
|
-# ./include/core/utils/HashCode.hpp
|
|
|
|
|
|
+ ./include/core/utils/Buffer.h
|
|
./include/core/utils/Check.h
|
|
./include/core/utils/Check.h
|
|
-# ./include/core/utils/Buffer.hpp
|
|
|
|
-# ./include/core/utils/Random.hpp
|
|
|
|
- ./include/core/utils/Types.h
|
|
|
|
-# ./include/core/utils/Color.hpp
|
|
|
|
|
|
+ ./include/core/utils/Error.h
|
|
./include/core/utils/Logger.h
|
|
./include/core/utils/Logger.h
|
|
-# ./include/core/utils/ArrayString.hpp
|
|
|
|
|
|
+ ./include/core/utils/Types.h
|
|
./include/core/utils/Utility.h
|
|
./include/core/utils/Utility.h
|
|
-# ./include/core/utils/Clock.hpp
|
|
|
|
- ./include/core/utils/Error.h
|
|
|
|
-# ./include/core/math/Quaternion.hpp
|
|
|
|
|
|
+# ./include/core/data/Array.hpp
|
|
|
|
+# ./include/core/data/ArrayList.hpp
|
|
|
|
+# ./include/core/data/BitArray.hpp
|
|
|
|
+# ./include/core/data/Components.hpp
|
|
|
|
+# ./include/core/data/HashMap.hpp
|
|
|
|
+# ./include/core/data/LinkedList.hpp
|
|
|
|
+# ./include/core/data/List.hpp
|
|
|
|
+# ./include/core/data/ProbingHashMap.hpp
|
|
|
|
+# ./include/core/data/RingBuffer.hpp
|
|
|
|
+# ./include/core/data/Stack.hpp
|
|
|
|
+# ./include/core/io/File.hpp
|
|
|
|
+# ./include/core/io/FileReader.hpp
|
|
# ./include/core/math/Box.hpp
|
|
# ./include/core/math/Box.hpp
|
|
|
|
+# ./include/core/math/BufferedValue.hpp
|
|
# ./include/core/math/Frustum.hpp
|
|
# ./include/core/math/Frustum.hpp
|
|
-# ./include/core/math/Vector.hpp
|
|
|
|
|
|
+# ./include/core/math/Math.hpp
|
|
# ./include/core/math/Matrix.hpp
|
|
# ./include/core/math/Matrix.hpp
|
|
-# ./include/core/math/View.hpp
|
|
|
|
-# ./include/core/math/BufferedValue.hpp
|
|
|
|
-# ./include/core/math/Plane.hpp
|
|
|
|
# ./include/core/math/MatrixStack.hpp
|
|
# ./include/core/math/MatrixStack.hpp
|
|
-# ./include/core/math/Math.hpp
|
|
|
|
-# ./include/core/io/File.hpp
|
|
|
|
-# ./include/core/io/FileReader.hpp
|
|
|
|
|
|
+# ./include/core/math/Plane.hpp
|
|
|
|
+# ./include/core/math/Quaternion.hpp
|
|
|
|
+# ./include/core/math/Vector.hpp
|
|
|
|
+# ./include/core/math/View.hpp
|
|
|
|
+# ./include/core/thread/Thread.hpp
|
|
|
|
+# ./include/core/utils/ArrayString.hpp
|
|
|
|
+# ./include/core/utils/Clock.hpp
|
|
|
|
+# ./include/core/utils/Color.hpp
|
|
|
|
+# ./include/core/utils/HashCode.hpp
|
|
|
|
+# ./include/core/utils/Random.hpp
|
|
)
|
|
)
|
|
install(TARGETS core FILE_SET HEADERS)
|
|
install(TARGETS core FILE_SET HEADERS)
|
|
|
|
|