Patrick-Christopher Mattulat 1 год назад
Родитель
Сommit
21722ec1b0

+ 6 - 6
CMakeLists.txt

@@ -7,9 +7,9 @@
 ####################################################################################################################
 
 cmake_minimum_required(VERSION 3.17)
-project(ls-math VERSION 2022.1.0)
+project(ls_math VERSION 2022.1.0)
 
-set(MODULE_NAME_LS_MATH_VECTOR ls-math-vector)
+set(MODULE_NAME_LS_MATH_VECTOR ls_math_vector)
 
 set(GOOGLE_TEST_MODULE googletest-1.11.0)
 
@@ -134,7 +134,7 @@ endif ()
 ####################################################################################################################
 
 set(SOURCE_FILES_LS_MATH_VECTOR
-        ${CMAKE_CURRENT_SOURCE_DIR}/source/ls-math/vector/Vector2.cpp)
+        ${CMAKE_CURRENT_SOURCE_DIR}/source/ls_math/vector/Vector2.cpp)
 
 ####################################################################################################################
 ####################################################################################################################
@@ -158,7 +158,7 @@ endif ()
 ####################################################################################################################
 
 ##########################################################
-# Build Tests (ls-math-vector)
+# Build Tests (ls_math_vector)
 ##########################################################
 
 if (${BUILD_LS_MATH_WITH_TESTS})
@@ -175,7 +175,7 @@ endif ()
 ####################################################################################################################
 
 ##########################################################
-# Build Library (ls-math-vector)
+# Build Library (ls_math_vector)
 ##########################################################
 
 message("${PROJECT_NAME}: Building ${MODULE_NAME_LS_MATH_VECTOR} library version ${PROJECT_VERSION}...")
@@ -205,7 +205,7 @@ endif ()
 ####################################################################################################################
 
 ##########################################################
-# Linking (ls-math-vector)
+# Linking (ls_math_vector)
 ##########################################################
 
 if (${BUILD_LS_MATH_WITH_TESTS})

+ 1 - 1
include/ls-math/core/types/VectorTypes.hpp → include/ls_math/core/types/VectorTypes.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-08-05
- * Changed:         2022-08-05
+ * Changed:         2022-11-06
  *
  * */
 

+ 2 - 2
include/ls-math/ls_math_core.hpp → include/ls_math/ls_math_core.hpp

@@ -3,13 +3,13 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-08-05
- * Changed:         2022-08-05
+ * Changed:         2022-11-06
  *
  * */
 
 #ifndef LS_MATH_LS_MATH_CORE_HPP
 #define LS_MATH_LS_MATH_CORE_HPP
 
-#include <ls-math/core/types/VectorTypes.hpp>
+#include <ls_math/core/types/VectorTypes.hpp>
 
 #endif

+ 2 - 2
include/ls-math/ls_math_vector.hpp → include/ls_math/ls_math_vector.hpp

@@ -3,13 +3,13 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-08-05
- * Changed:         2022-08-05
+ * Changed:         2022-11-06
  *
  * */
 
 #ifndef LS_MATH_LS_MATH_VECTOR_HPP
 #define LS_MATH_LS_MATH_VECTOR_HPP
 
-#include <ls-math/vector/Vector2.hpp>
+#include <ls_math/vector/Vector2.hpp>
 
 #endif

+ 2 - 2
include/ls-math/os/dynamic_goal.hpp → include/ls_math/os/dynamic_goal.hpp

@@ -11,10 +11,10 @@
 #define LS_MATH_DYNAMIC_GOAL_HPP
 
 #if defined(_WIN32) && defined(_MSC_VER)
-#include <ls-math/os/windows/msvc_dll_definitions.hpp>
+#include <ls_math/os/windows/msvc_dll_definitions.hpp>
 #endif
 #if defined(unix) || defined(__APPLE__) || defined(_WIN32) && defined(__GNUC__)
-#include <ls-math/os/unix/unix_so_definitions.hpp>
+#include <ls_math/os/unix/unix_so_definitions.hpp>
 #endif
 
 #endif

+ 0 - 0
include/ls-math/os/unix/unix_so_definitions.hpp → include/ls_math/os/unix/unix_so_definitions.hpp


+ 0 - 0
include/ls-math/os/windows/msvc_dll_definitions.hpp → include/ls_math/os/windows/msvc_dll_definitions.hpp


+ 2 - 2
include/ls-math/vector/Vector2.hpp → include/ls_math/vector/Vector2.hpp

@@ -10,8 +10,8 @@
 #ifndef LS_MATH_VECTOR2_HPP
 #define LS_MATH_VECTOR2_HPP
 
-#include <ls-math/core/types/VectorTypes.hpp>
-#include <ls-math/os/dynamic_goal.hpp>
+#include <ls_math/core/types/VectorTypes.hpp>
+#include <ls_math/os/dynamic_goal.hpp>
 #include <cstdlib>
 
 namespace ls::math::vector

+ 2 - 2
source/ls-math/vector/Vector2.cpp → source/ls_math/vector/Vector2.cpp

@@ -3,11 +3,11 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-08-05
- * Changed:         2022-08-07
+ * Changed:         2022-11-06
  *
  * */
 
-#include <ls-math/vector/Vector2.hpp>
+#include <ls_math/vector/Vector2.hpp>
 #include <cmath>
 
 ls::math::vector::Vector2::Vector2(const ls::math::core::type::vector2_component &_x, const ls::math::core::type::vector2_component &_y)

+ 1 - 1
test/cases/vector/Vector2Test.cpp

@@ -8,7 +8,7 @@
  * */
 
 #include <gtest/gtest.h>
-#include <ls-math/ls_math_vector.hpp>
+#include <ls_math/ls_math_vector.hpp>
 #include <cmath>
 
 using namespace ls::math::vector;