diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0884344 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,47 @@ +cmake_minimum_required(VERSION 3.12) +project(sockscape) + +file(GLOB_RECURSE server_src + "src/*.hpp" + "src/*.cpp" + "src/*.c" + "src/*.h" +) + +file(GLOB_RECURSE client_src + "client/src/*.hpp" + "clientsrc/*.cpp" +) + +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake") + +find_package(OPENGL REQUIRED) +find_package(GLEW REQUIRED) +find_package(SDL2 REQUIRED) +find_package(SDL2_image REQUIRED) +find_package(SDL2_ttf REQUIRED) + +add_executable(client client_src) +target_include_directories(client ${PROJECT_SOURCE_DIR}/include + ${OPENGL_INCLUDE_DIR} + ${GLEW_INCLUDE_DIR} + ${SDL2_INCLUDE_DIR} + ${SDL2_IMAGE_INCLUDE_DIR} + ${SDL2_TTF_INCLUDE_DIR}) +target_link_libraries(client ${OPENGL_LIBRARIES} + ${GLEW_LIBRARY} + ${SDL2_LIBRARY} + ${SDL2_IMAGE_LIBRARIES} + ${SDL2_TTF_LIBRARIES}) +install(TARGETS client RUNTIME DESTINATION bin/client) + +add_executable(server server_src) +if(${CMAKE_SYSTEM_NAME} STREQUAL "Windows") + target_link_libraries(server wsock32 ws2_32) +elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux") + target_link_libraries(server dl pthread nsl resolv) +else() + target_link_libraries(server dl pthread socket nsl resolv) +endif() +install(TARGETS server RUNTIME DESTINATION bin/server) \ No newline at end of file diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt deleted file mode 100644 index 0402998..0000000 --- a/client/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -cmake_minimum_required(VERSION 3.12) -project(client) - -file(GLOB_RECURSE client_str - "src/*.hpp" - "src/*.cpp" -) - -set(CMAKE_CXX_STANDARD 11) -set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake") - -find_package(OPENGL REQUIRED) -find_package(GLEW REQUIRED) -find_package(SDL2 REQUIRED) -find_package(SDL2_image REQUIRED) -find_package(SDL2_ttf REQUIRED) - -add_executable(client src/main.cpp) -include_directories(${PROJECT_SOURCE_DIR}/include - ${OPENGL_INCLUDE_DIR} - ${GLEW_INCLUDE_DIR} - ${SDL2_INCLUDE_DIR} - ${SDL2_IMAGE_INCLUDE_DIR} - ${SDL2_TTF_INCLUDE_DIR}) -target_link_libraries(client ${OPENGL_LIBRARIES} - ${GLEW_LIBRARY} - ${SDL2_LIBRARY} - ${SDL2_IMAGE_LIBRARIES} - ${SDL2_TTF_LIBRARIES}) - -install(TARGETS client RUNTIME DESTINATION bin) \ No newline at end of file diff --git a/client/cmake/FindSDL2.cmake b/cmake/FindSDL2.cmake similarity index 100% rename from client/cmake/FindSDL2.cmake rename to cmake/FindSDL2.cmake diff --git a/client/cmake/FindSDL2_image.cmake b/cmake/FindSDL2_image.cmake similarity index 100% rename from client/cmake/FindSDL2_image.cmake rename to cmake/FindSDL2_image.cmake diff --git a/client/cmake/FindSDL2_mixer.cmake b/cmake/FindSDL2_mixer.cmake similarity index 100% rename from client/cmake/FindSDL2_mixer.cmake rename to cmake/FindSDL2_mixer.cmake diff --git a/client/cmake/FindSDL2_ttf.cmake b/cmake/FindSDL2_ttf.cmake similarity index 100% rename from client/cmake/FindSDL2_ttf.cmake rename to cmake/FindSDL2_ttf.cmake diff --git a/client/include/glm/common.hpp b/include/client/glm/common.hpp similarity index 100% rename from client/include/glm/common.hpp rename to include/client/glm/common.hpp diff --git a/client/include/glm/detail/_features.hpp b/include/client/glm/detail/_features.hpp similarity index 100% rename from client/include/glm/detail/_features.hpp rename to include/client/glm/detail/_features.hpp diff --git a/client/include/glm/detail/_fixes.hpp b/include/client/glm/detail/_fixes.hpp similarity index 100% rename from client/include/glm/detail/_fixes.hpp rename to include/client/glm/detail/_fixes.hpp diff --git a/client/include/glm/detail/_noise.hpp b/include/client/glm/detail/_noise.hpp similarity index 100% rename from client/include/glm/detail/_noise.hpp rename to include/client/glm/detail/_noise.hpp diff --git a/client/include/glm/detail/_swizzle.hpp b/include/client/glm/detail/_swizzle.hpp similarity index 100% rename from client/include/glm/detail/_swizzle.hpp rename to include/client/glm/detail/_swizzle.hpp diff --git a/client/include/glm/detail/_swizzle_func.hpp b/include/client/glm/detail/_swizzle_func.hpp similarity index 100% rename from client/include/glm/detail/_swizzle_func.hpp rename to include/client/glm/detail/_swizzle_func.hpp diff --git a/client/include/glm/detail/_vectorize.hpp b/include/client/glm/detail/_vectorize.hpp similarity index 100% rename from client/include/glm/detail/_vectorize.hpp rename to include/client/glm/detail/_vectorize.hpp diff --git a/client/include/glm/detail/compute_common.hpp b/include/client/glm/detail/compute_common.hpp similarity index 100% rename from client/include/glm/detail/compute_common.hpp rename to include/client/glm/detail/compute_common.hpp diff --git a/client/include/glm/detail/compute_vector_relational.hpp b/include/client/glm/detail/compute_vector_relational.hpp similarity index 100% rename from client/include/glm/detail/compute_vector_relational.hpp rename to include/client/glm/detail/compute_vector_relational.hpp diff --git a/client/include/glm/detail/func_common.inl b/include/client/glm/detail/func_common.inl similarity index 100% rename from client/include/glm/detail/func_common.inl rename to include/client/glm/detail/func_common.inl diff --git a/client/include/glm/detail/func_common_simd.inl b/include/client/glm/detail/func_common_simd.inl similarity index 100% rename from client/include/glm/detail/func_common_simd.inl rename to include/client/glm/detail/func_common_simd.inl diff --git a/client/include/glm/detail/func_exponential.inl b/include/client/glm/detail/func_exponential.inl similarity index 100% rename from client/include/glm/detail/func_exponential.inl rename to include/client/glm/detail/func_exponential.inl diff --git a/client/include/glm/detail/func_exponential_simd.inl b/include/client/glm/detail/func_exponential_simd.inl similarity index 100% rename from client/include/glm/detail/func_exponential_simd.inl rename to include/client/glm/detail/func_exponential_simd.inl diff --git a/client/include/glm/detail/func_geometric.inl b/include/client/glm/detail/func_geometric.inl similarity index 100% rename from client/include/glm/detail/func_geometric.inl rename to include/client/glm/detail/func_geometric.inl diff --git a/client/include/glm/detail/func_geometric_simd.inl b/include/client/glm/detail/func_geometric_simd.inl similarity index 100% rename from client/include/glm/detail/func_geometric_simd.inl rename to include/client/glm/detail/func_geometric_simd.inl diff --git a/client/include/glm/detail/func_integer.inl b/include/client/glm/detail/func_integer.inl similarity index 100% rename from client/include/glm/detail/func_integer.inl rename to include/client/glm/detail/func_integer.inl diff --git a/client/include/glm/detail/func_integer_simd.inl b/include/client/glm/detail/func_integer_simd.inl similarity index 100% rename from client/include/glm/detail/func_integer_simd.inl rename to include/client/glm/detail/func_integer_simd.inl diff --git a/client/include/glm/detail/func_matrix.inl b/include/client/glm/detail/func_matrix.inl similarity index 100% rename from client/include/glm/detail/func_matrix.inl rename to include/client/glm/detail/func_matrix.inl diff --git a/client/include/glm/detail/func_matrix_simd.inl b/include/client/glm/detail/func_matrix_simd.inl similarity index 100% rename from client/include/glm/detail/func_matrix_simd.inl rename to include/client/glm/detail/func_matrix_simd.inl diff --git a/client/include/glm/detail/func_packing.inl b/include/client/glm/detail/func_packing.inl similarity index 100% rename from client/include/glm/detail/func_packing.inl rename to include/client/glm/detail/func_packing.inl diff --git a/client/include/glm/detail/func_packing_simd.inl b/include/client/glm/detail/func_packing_simd.inl similarity index 100% rename from client/include/glm/detail/func_packing_simd.inl rename to include/client/glm/detail/func_packing_simd.inl diff --git a/client/include/glm/detail/func_trigonometric.inl b/include/client/glm/detail/func_trigonometric.inl similarity index 100% rename from client/include/glm/detail/func_trigonometric.inl rename to include/client/glm/detail/func_trigonometric.inl diff --git a/client/include/glm/detail/func_trigonometric_simd.inl b/include/client/glm/detail/func_trigonometric_simd.inl similarity index 100% rename from client/include/glm/detail/func_trigonometric_simd.inl rename to include/client/glm/detail/func_trigonometric_simd.inl diff --git a/client/include/glm/detail/func_vector_relational.inl b/include/client/glm/detail/func_vector_relational.inl similarity index 100% rename from client/include/glm/detail/func_vector_relational.inl rename to include/client/glm/detail/func_vector_relational.inl diff --git a/client/include/glm/detail/func_vector_relational_simd.inl b/include/client/glm/detail/func_vector_relational_simd.inl similarity index 100% rename from client/include/glm/detail/func_vector_relational_simd.inl rename to include/client/glm/detail/func_vector_relational_simd.inl diff --git a/client/include/glm/detail/glm.cpp b/include/client/glm/detail/glm.cpp similarity index 100% rename from client/include/glm/detail/glm.cpp rename to include/client/glm/detail/glm.cpp diff --git a/client/include/glm/detail/qualifier.hpp b/include/client/glm/detail/qualifier.hpp similarity index 100% rename from client/include/glm/detail/qualifier.hpp rename to include/client/glm/detail/qualifier.hpp diff --git a/client/include/glm/detail/setup.hpp b/include/client/glm/detail/setup.hpp similarity index 100% rename from client/include/glm/detail/setup.hpp rename to include/client/glm/detail/setup.hpp diff --git a/client/include/glm/detail/type_float.hpp b/include/client/glm/detail/type_float.hpp similarity index 100% rename from client/include/glm/detail/type_float.hpp rename to include/client/glm/detail/type_float.hpp diff --git a/client/include/glm/detail/type_half.hpp b/include/client/glm/detail/type_half.hpp similarity index 100% rename from client/include/glm/detail/type_half.hpp rename to include/client/glm/detail/type_half.hpp diff --git a/client/include/glm/detail/type_half.inl b/include/client/glm/detail/type_half.inl similarity index 100% rename from client/include/glm/detail/type_half.inl rename to include/client/glm/detail/type_half.inl diff --git a/client/include/glm/detail/type_int.hpp b/include/client/glm/detail/type_int.hpp similarity index 100% rename from client/include/glm/detail/type_int.hpp rename to include/client/glm/detail/type_int.hpp diff --git a/client/include/glm/detail/type_mat2x2.hpp b/include/client/glm/detail/type_mat2x2.hpp similarity index 100% rename from client/include/glm/detail/type_mat2x2.hpp rename to include/client/glm/detail/type_mat2x2.hpp diff --git a/client/include/glm/detail/type_mat2x2.inl b/include/client/glm/detail/type_mat2x2.inl similarity index 100% rename from client/include/glm/detail/type_mat2x2.inl rename to include/client/glm/detail/type_mat2x2.inl diff --git a/client/include/glm/detail/type_mat2x3.hpp b/include/client/glm/detail/type_mat2x3.hpp similarity index 100% rename from client/include/glm/detail/type_mat2x3.hpp rename to include/client/glm/detail/type_mat2x3.hpp diff --git a/client/include/glm/detail/type_mat2x3.inl b/include/client/glm/detail/type_mat2x3.inl similarity index 100% rename from client/include/glm/detail/type_mat2x3.inl rename to include/client/glm/detail/type_mat2x3.inl diff --git a/client/include/glm/detail/type_mat2x4.hpp b/include/client/glm/detail/type_mat2x4.hpp similarity index 100% rename from client/include/glm/detail/type_mat2x4.hpp rename to include/client/glm/detail/type_mat2x4.hpp diff --git a/client/include/glm/detail/type_mat2x4.inl b/include/client/glm/detail/type_mat2x4.inl similarity index 100% rename from client/include/glm/detail/type_mat2x4.inl rename to include/client/glm/detail/type_mat2x4.inl diff --git a/client/include/glm/detail/type_mat3x2.hpp b/include/client/glm/detail/type_mat3x2.hpp similarity index 100% rename from client/include/glm/detail/type_mat3x2.hpp rename to include/client/glm/detail/type_mat3x2.hpp diff --git a/client/include/glm/detail/type_mat3x2.inl b/include/client/glm/detail/type_mat3x2.inl similarity index 100% rename from client/include/glm/detail/type_mat3x2.inl rename to include/client/glm/detail/type_mat3x2.inl diff --git a/client/include/glm/detail/type_mat3x3.hpp b/include/client/glm/detail/type_mat3x3.hpp similarity index 100% rename from client/include/glm/detail/type_mat3x3.hpp rename to include/client/glm/detail/type_mat3x3.hpp diff --git a/client/include/glm/detail/type_mat3x3.inl b/include/client/glm/detail/type_mat3x3.inl similarity index 100% rename from client/include/glm/detail/type_mat3x3.inl rename to include/client/glm/detail/type_mat3x3.inl diff --git a/client/include/glm/detail/type_mat3x4.hpp b/include/client/glm/detail/type_mat3x4.hpp similarity index 100% rename from client/include/glm/detail/type_mat3x4.hpp rename to include/client/glm/detail/type_mat3x4.hpp diff --git a/client/include/glm/detail/type_mat3x4.inl b/include/client/glm/detail/type_mat3x4.inl similarity index 100% rename from client/include/glm/detail/type_mat3x4.inl rename to include/client/glm/detail/type_mat3x4.inl diff --git a/client/include/glm/detail/type_mat4x2.hpp b/include/client/glm/detail/type_mat4x2.hpp similarity index 100% rename from client/include/glm/detail/type_mat4x2.hpp rename to include/client/glm/detail/type_mat4x2.hpp diff --git a/client/include/glm/detail/type_mat4x2.inl b/include/client/glm/detail/type_mat4x2.inl similarity index 100% rename from client/include/glm/detail/type_mat4x2.inl rename to include/client/glm/detail/type_mat4x2.inl diff --git a/client/include/glm/detail/type_mat4x3.hpp b/include/client/glm/detail/type_mat4x3.hpp similarity index 100% rename from client/include/glm/detail/type_mat4x3.hpp rename to include/client/glm/detail/type_mat4x3.hpp diff --git a/client/include/glm/detail/type_mat4x3.inl b/include/client/glm/detail/type_mat4x3.inl similarity index 100% rename from client/include/glm/detail/type_mat4x3.inl rename to include/client/glm/detail/type_mat4x3.inl diff --git a/client/include/glm/detail/type_mat4x4.hpp b/include/client/glm/detail/type_mat4x4.hpp similarity index 100% rename from client/include/glm/detail/type_mat4x4.hpp rename to include/client/glm/detail/type_mat4x4.hpp diff --git a/client/include/glm/detail/type_mat4x4.inl b/include/client/glm/detail/type_mat4x4.inl similarity index 100% rename from client/include/glm/detail/type_mat4x4.inl rename to include/client/glm/detail/type_mat4x4.inl diff --git a/client/include/glm/detail/type_mat4x4_simd.inl b/include/client/glm/detail/type_mat4x4_simd.inl similarity index 100% rename from client/include/glm/detail/type_mat4x4_simd.inl rename to include/client/glm/detail/type_mat4x4_simd.inl diff --git a/client/include/glm/detail/type_quat.hpp b/include/client/glm/detail/type_quat.hpp similarity index 100% rename from client/include/glm/detail/type_quat.hpp rename to include/client/glm/detail/type_quat.hpp diff --git a/client/include/glm/detail/type_quat.inl b/include/client/glm/detail/type_quat.inl similarity index 100% rename from client/include/glm/detail/type_quat.inl rename to include/client/glm/detail/type_quat.inl diff --git a/client/include/glm/detail/type_quat_simd.inl b/include/client/glm/detail/type_quat_simd.inl similarity index 100% rename from client/include/glm/detail/type_quat_simd.inl rename to include/client/glm/detail/type_quat_simd.inl diff --git a/client/include/glm/detail/type_vec1.hpp b/include/client/glm/detail/type_vec1.hpp similarity index 100% rename from client/include/glm/detail/type_vec1.hpp rename to include/client/glm/detail/type_vec1.hpp diff --git a/client/include/glm/detail/type_vec1.inl b/include/client/glm/detail/type_vec1.inl similarity index 100% rename from client/include/glm/detail/type_vec1.inl rename to include/client/glm/detail/type_vec1.inl diff --git a/client/include/glm/detail/type_vec2.hpp b/include/client/glm/detail/type_vec2.hpp similarity index 100% rename from client/include/glm/detail/type_vec2.hpp rename to include/client/glm/detail/type_vec2.hpp diff --git a/client/include/glm/detail/type_vec2.inl b/include/client/glm/detail/type_vec2.inl similarity index 100% rename from client/include/glm/detail/type_vec2.inl rename to include/client/glm/detail/type_vec2.inl diff --git a/client/include/glm/detail/type_vec3.hpp b/include/client/glm/detail/type_vec3.hpp similarity index 100% rename from client/include/glm/detail/type_vec3.hpp rename to include/client/glm/detail/type_vec3.hpp diff --git a/client/include/glm/detail/type_vec3.inl b/include/client/glm/detail/type_vec3.inl similarity index 100% rename from client/include/glm/detail/type_vec3.inl rename to include/client/glm/detail/type_vec3.inl diff --git a/client/include/glm/detail/type_vec4.hpp b/include/client/glm/detail/type_vec4.hpp similarity index 100% rename from client/include/glm/detail/type_vec4.hpp rename to include/client/glm/detail/type_vec4.hpp diff --git a/client/include/glm/detail/type_vec4.inl b/include/client/glm/detail/type_vec4.inl similarity index 100% rename from client/include/glm/detail/type_vec4.inl rename to include/client/glm/detail/type_vec4.inl diff --git a/client/include/glm/detail/type_vec4_simd.inl b/include/client/glm/detail/type_vec4_simd.inl similarity index 100% rename from client/include/glm/detail/type_vec4_simd.inl rename to include/client/glm/detail/type_vec4_simd.inl diff --git a/client/include/glm/exponential.hpp b/include/client/glm/exponential.hpp similarity index 100% rename from client/include/glm/exponential.hpp rename to include/client/glm/exponential.hpp diff --git a/client/include/glm/ext.hpp b/include/client/glm/ext.hpp similarity index 100% rename from client/include/glm/ext.hpp rename to include/client/glm/ext.hpp diff --git a/client/include/glm/ext/matrix_double2x2.hpp b/include/client/glm/ext/matrix_double2x2.hpp similarity index 100% rename from client/include/glm/ext/matrix_double2x2.hpp rename to include/client/glm/ext/matrix_double2x2.hpp diff --git a/client/include/glm/ext/matrix_double2x2_precision.hpp b/include/client/glm/ext/matrix_double2x2_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_double2x2_precision.hpp rename to include/client/glm/ext/matrix_double2x2_precision.hpp diff --git a/client/include/glm/ext/matrix_double2x3.hpp b/include/client/glm/ext/matrix_double2x3.hpp similarity index 100% rename from client/include/glm/ext/matrix_double2x3.hpp rename to include/client/glm/ext/matrix_double2x3.hpp diff --git a/client/include/glm/ext/matrix_double2x3_precision.hpp b/include/client/glm/ext/matrix_double2x3_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_double2x3_precision.hpp rename to include/client/glm/ext/matrix_double2x3_precision.hpp diff --git a/client/include/glm/ext/matrix_double2x4.hpp b/include/client/glm/ext/matrix_double2x4.hpp similarity index 100% rename from client/include/glm/ext/matrix_double2x4.hpp rename to include/client/glm/ext/matrix_double2x4.hpp diff --git a/client/include/glm/ext/matrix_double2x4_precision.hpp b/include/client/glm/ext/matrix_double2x4_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_double2x4_precision.hpp rename to include/client/glm/ext/matrix_double2x4_precision.hpp diff --git a/client/include/glm/ext/matrix_double3x2.hpp b/include/client/glm/ext/matrix_double3x2.hpp similarity index 100% rename from client/include/glm/ext/matrix_double3x2.hpp rename to include/client/glm/ext/matrix_double3x2.hpp diff --git a/client/include/glm/ext/matrix_double3x2_precision.hpp b/include/client/glm/ext/matrix_double3x2_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_double3x2_precision.hpp rename to include/client/glm/ext/matrix_double3x2_precision.hpp diff --git a/client/include/glm/ext/matrix_double3x3.hpp b/include/client/glm/ext/matrix_double3x3.hpp similarity index 100% rename from client/include/glm/ext/matrix_double3x3.hpp rename to include/client/glm/ext/matrix_double3x3.hpp diff --git a/client/include/glm/ext/matrix_double3x3_precision.hpp b/include/client/glm/ext/matrix_double3x3_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_double3x3_precision.hpp rename to include/client/glm/ext/matrix_double3x3_precision.hpp diff --git a/client/include/glm/ext/matrix_double3x4.hpp b/include/client/glm/ext/matrix_double3x4.hpp similarity index 100% rename from client/include/glm/ext/matrix_double3x4.hpp rename to include/client/glm/ext/matrix_double3x4.hpp diff --git a/client/include/glm/ext/matrix_double3x4_precision.hpp b/include/client/glm/ext/matrix_double3x4_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_double3x4_precision.hpp rename to include/client/glm/ext/matrix_double3x4_precision.hpp diff --git a/client/include/glm/ext/matrix_double4x2.hpp b/include/client/glm/ext/matrix_double4x2.hpp similarity index 100% rename from client/include/glm/ext/matrix_double4x2.hpp rename to include/client/glm/ext/matrix_double4x2.hpp diff --git a/client/include/glm/ext/matrix_double4x2_precision.hpp b/include/client/glm/ext/matrix_double4x2_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_double4x2_precision.hpp rename to include/client/glm/ext/matrix_double4x2_precision.hpp diff --git a/client/include/glm/ext/matrix_double4x3.hpp b/include/client/glm/ext/matrix_double4x3.hpp similarity index 100% rename from client/include/glm/ext/matrix_double4x3.hpp rename to include/client/glm/ext/matrix_double4x3.hpp diff --git a/client/include/glm/ext/matrix_double4x3_precision.hpp b/include/client/glm/ext/matrix_double4x3_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_double4x3_precision.hpp rename to include/client/glm/ext/matrix_double4x3_precision.hpp diff --git a/client/include/glm/ext/matrix_double4x4.hpp b/include/client/glm/ext/matrix_double4x4.hpp similarity index 100% rename from client/include/glm/ext/matrix_double4x4.hpp rename to include/client/glm/ext/matrix_double4x4.hpp diff --git a/client/include/glm/ext/matrix_double4x4_precision.hpp b/include/client/glm/ext/matrix_double4x4_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_double4x4_precision.hpp rename to include/client/glm/ext/matrix_double4x4_precision.hpp diff --git a/client/include/glm/ext/matrix_float2x2.hpp b/include/client/glm/ext/matrix_float2x2.hpp similarity index 100% rename from client/include/glm/ext/matrix_float2x2.hpp rename to include/client/glm/ext/matrix_float2x2.hpp diff --git a/client/include/glm/ext/matrix_float2x2_precision.hpp b/include/client/glm/ext/matrix_float2x2_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_float2x2_precision.hpp rename to include/client/glm/ext/matrix_float2x2_precision.hpp diff --git a/client/include/glm/ext/matrix_float2x3.hpp b/include/client/glm/ext/matrix_float2x3.hpp similarity index 100% rename from client/include/glm/ext/matrix_float2x3.hpp rename to include/client/glm/ext/matrix_float2x3.hpp diff --git a/client/include/glm/ext/matrix_float2x3_precision.hpp b/include/client/glm/ext/matrix_float2x3_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_float2x3_precision.hpp rename to include/client/glm/ext/matrix_float2x3_precision.hpp diff --git a/client/include/glm/ext/matrix_float2x4.hpp b/include/client/glm/ext/matrix_float2x4.hpp similarity index 100% rename from client/include/glm/ext/matrix_float2x4.hpp rename to include/client/glm/ext/matrix_float2x4.hpp diff --git a/client/include/glm/ext/matrix_float2x4_precision.hpp b/include/client/glm/ext/matrix_float2x4_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_float2x4_precision.hpp rename to include/client/glm/ext/matrix_float2x4_precision.hpp diff --git a/client/include/glm/ext/matrix_float3x2.hpp b/include/client/glm/ext/matrix_float3x2.hpp similarity index 100% rename from client/include/glm/ext/matrix_float3x2.hpp rename to include/client/glm/ext/matrix_float3x2.hpp diff --git a/client/include/glm/ext/matrix_float3x2_precision.hpp b/include/client/glm/ext/matrix_float3x2_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_float3x2_precision.hpp rename to include/client/glm/ext/matrix_float3x2_precision.hpp diff --git a/client/include/glm/ext/matrix_float3x3.hpp b/include/client/glm/ext/matrix_float3x3.hpp similarity index 100% rename from client/include/glm/ext/matrix_float3x3.hpp rename to include/client/glm/ext/matrix_float3x3.hpp diff --git a/client/include/glm/ext/matrix_float3x3_precision.hpp b/include/client/glm/ext/matrix_float3x3_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_float3x3_precision.hpp rename to include/client/glm/ext/matrix_float3x3_precision.hpp diff --git a/client/include/glm/ext/matrix_float3x4.hpp b/include/client/glm/ext/matrix_float3x4.hpp similarity index 100% rename from client/include/glm/ext/matrix_float3x4.hpp rename to include/client/glm/ext/matrix_float3x4.hpp diff --git a/client/include/glm/ext/matrix_float3x4_precision.hpp b/include/client/glm/ext/matrix_float3x4_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_float3x4_precision.hpp rename to include/client/glm/ext/matrix_float3x4_precision.hpp diff --git a/client/include/glm/ext/matrix_float4x2.hpp b/include/client/glm/ext/matrix_float4x2.hpp similarity index 100% rename from client/include/glm/ext/matrix_float4x2.hpp rename to include/client/glm/ext/matrix_float4x2.hpp diff --git a/client/include/glm/ext/matrix_float4x2_precision.hpp b/include/client/glm/ext/matrix_float4x2_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_float4x2_precision.hpp rename to include/client/glm/ext/matrix_float4x2_precision.hpp diff --git a/client/include/glm/ext/matrix_float4x3.hpp b/include/client/glm/ext/matrix_float4x3.hpp similarity index 100% rename from client/include/glm/ext/matrix_float4x3.hpp rename to include/client/glm/ext/matrix_float4x3.hpp diff --git a/client/include/glm/ext/matrix_float4x3_precision.hpp b/include/client/glm/ext/matrix_float4x3_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_float4x3_precision.hpp rename to include/client/glm/ext/matrix_float4x3_precision.hpp diff --git a/client/include/glm/ext/matrix_float4x4.hpp b/include/client/glm/ext/matrix_float4x4.hpp similarity index 100% rename from client/include/glm/ext/matrix_float4x4.hpp rename to include/client/glm/ext/matrix_float4x4.hpp diff --git a/client/include/glm/ext/matrix_float4x4_precision.hpp b/include/client/glm/ext/matrix_float4x4_precision.hpp similarity index 100% rename from client/include/glm/ext/matrix_float4x4_precision.hpp rename to include/client/glm/ext/matrix_float4x4_precision.hpp diff --git a/client/include/glm/ext/matrix_relational.hpp b/include/client/glm/ext/matrix_relational.hpp similarity index 100% rename from client/include/glm/ext/matrix_relational.hpp rename to include/client/glm/ext/matrix_relational.hpp diff --git a/client/include/glm/ext/matrix_relational.inl b/include/client/glm/ext/matrix_relational.inl similarity index 100% rename from client/include/glm/ext/matrix_relational.inl rename to include/client/glm/ext/matrix_relational.inl diff --git a/client/include/glm/ext/quaternion_double.hpp b/include/client/glm/ext/quaternion_double.hpp similarity index 100% rename from client/include/glm/ext/quaternion_double.hpp rename to include/client/glm/ext/quaternion_double.hpp diff --git a/client/include/glm/ext/quaternion_double_precision.hpp b/include/client/glm/ext/quaternion_double_precision.hpp similarity index 100% rename from client/include/glm/ext/quaternion_double_precision.hpp rename to include/client/glm/ext/quaternion_double_precision.hpp diff --git a/client/include/glm/ext/quaternion_float.hpp b/include/client/glm/ext/quaternion_float.hpp similarity index 100% rename from client/include/glm/ext/quaternion_float.hpp rename to include/client/glm/ext/quaternion_float.hpp diff --git a/client/include/glm/ext/quaternion_float_precision.hpp b/include/client/glm/ext/quaternion_float_precision.hpp similarity index 100% rename from client/include/glm/ext/quaternion_float_precision.hpp rename to include/client/glm/ext/quaternion_float_precision.hpp diff --git a/client/include/glm/ext/quaternion_geometric.hpp b/include/client/glm/ext/quaternion_geometric.hpp similarity index 100% rename from client/include/glm/ext/quaternion_geometric.hpp rename to include/client/glm/ext/quaternion_geometric.hpp diff --git a/client/include/glm/ext/quaternion_geometric.inl b/include/client/glm/ext/quaternion_geometric.inl similarity index 100% rename from client/include/glm/ext/quaternion_geometric.inl rename to include/client/glm/ext/quaternion_geometric.inl diff --git a/client/include/glm/ext/quaternion_relational.hpp b/include/client/glm/ext/quaternion_relational.hpp similarity index 100% rename from client/include/glm/ext/quaternion_relational.hpp rename to include/client/glm/ext/quaternion_relational.hpp diff --git a/client/include/glm/ext/quaternion_relational.inl b/include/client/glm/ext/quaternion_relational.inl similarity index 100% rename from client/include/glm/ext/quaternion_relational.inl rename to include/client/glm/ext/quaternion_relational.inl diff --git a/client/include/glm/ext/scalar_relational.hpp b/include/client/glm/ext/scalar_relational.hpp similarity index 100% rename from client/include/glm/ext/scalar_relational.hpp rename to include/client/glm/ext/scalar_relational.hpp diff --git a/client/include/glm/ext/scalar_relational.inl b/include/client/glm/ext/scalar_relational.inl similarity index 100% rename from client/include/glm/ext/scalar_relational.inl rename to include/client/glm/ext/scalar_relational.inl diff --git a/client/include/glm/ext/vector_bool1.hpp b/include/client/glm/ext/vector_bool1.hpp similarity index 100% rename from client/include/glm/ext/vector_bool1.hpp rename to include/client/glm/ext/vector_bool1.hpp diff --git a/client/include/glm/ext/vector_bool1_precision.hpp b/include/client/glm/ext/vector_bool1_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_bool1_precision.hpp rename to include/client/glm/ext/vector_bool1_precision.hpp diff --git a/client/include/glm/ext/vector_bool2.hpp b/include/client/glm/ext/vector_bool2.hpp similarity index 100% rename from client/include/glm/ext/vector_bool2.hpp rename to include/client/glm/ext/vector_bool2.hpp diff --git a/client/include/glm/ext/vector_bool2_precision.hpp b/include/client/glm/ext/vector_bool2_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_bool2_precision.hpp rename to include/client/glm/ext/vector_bool2_precision.hpp diff --git a/client/include/glm/ext/vector_bool3.hpp b/include/client/glm/ext/vector_bool3.hpp similarity index 100% rename from client/include/glm/ext/vector_bool3.hpp rename to include/client/glm/ext/vector_bool3.hpp diff --git a/client/include/glm/ext/vector_bool3_precision.hpp b/include/client/glm/ext/vector_bool3_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_bool3_precision.hpp rename to include/client/glm/ext/vector_bool3_precision.hpp diff --git a/client/include/glm/ext/vector_bool4.hpp b/include/client/glm/ext/vector_bool4.hpp similarity index 100% rename from client/include/glm/ext/vector_bool4.hpp rename to include/client/glm/ext/vector_bool4.hpp diff --git a/client/include/glm/ext/vector_bool4_precision.hpp b/include/client/glm/ext/vector_bool4_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_bool4_precision.hpp rename to include/client/glm/ext/vector_bool4_precision.hpp diff --git a/client/include/glm/ext/vector_double1.hpp b/include/client/glm/ext/vector_double1.hpp similarity index 100% rename from client/include/glm/ext/vector_double1.hpp rename to include/client/glm/ext/vector_double1.hpp diff --git a/client/include/glm/ext/vector_double1_precision.hpp b/include/client/glm/ext/vector_double1_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_double1_precision.hpp rename to include/client/glm/ext/vector_double1_precision.hpp diff --git a/client/include/glm/ext/vector_double2.hpp b/include/client/glm/ext/vector_double2.hpp similarity index 100% rename from client/include/glm/ext/vector_double2.hpp rename to include/client/glm/ext/vector_double2.hpp diff --git a/client/include/glm/ext/vector_double2_precision.hpp b/include/client/glm/ext/vector_double2_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_double2_precision.hpp rename to include/client/glm/ext/vector_double2_precision.hpp diff --git a/client/include/glm/ext/vector_double3.hpp b/include/client/glm/ext/vector_double3.hpp similarity index 100% rename from client/include/glm/ext/vector_double3.hpp rename to include/client/glm/ext/vector_double3.hpp diff --git a/client/include/glm/ext/vector_double3_precision.hpp b/include/client/glm/ext/vector_double3_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_double3_precision.hpp rename to include/client/glm/ext/vector_double3_precision.hpp diff --git a/client/include/glm/ext/vector_double4.hpp b/include/client/glm/ext/vector_double4.hpp similarity index 100% rename from client/include/glm/ext/vector_double4.hpp rename to include/client/glm/ext/vector_double4.hpp diff --git a/client/include/glm/ext/vector_double4_precision.hpp b/include/client/glm/ext/vector_double4_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_double4_precision.hpp rename to include/client/glm/ext/vector_double4_precision.hpp diff --git a/client/include/glm/ext/vector_float1.hpp b/include/client/glm/ext/vector_float1.hpp similarity index 100% rename from client/include/glm/ext/vector_float1.hpp rename to include/client/glm/ext/vector_float1.hpp diff --git a/client/include/glm/ext/vector_float1_precision.hpp b/include/client/glm/ext/vector_float1_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_float1_precision.hpp rename to include/client/glm/ext/vector_float1_precision.hpp diff --git a/client/include/glm/ext/vector_float2.hpp b/include/client/glm/ext/vector_float2.hpp similarity index 100% rename from client/include/glm/ext/vector_float2.hpp rename to include/client/glm/ext/vector_float2.hpp diff --git a/client/include/glm/ext/vector_float2_precision.hpp b/include/client/glm/ext/vector_float2_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_float2_precision.hpp rename to include/client/glm/ext/vector_float2_precision.hpp diff --git a/client/include/glm/ext/vector_float3.hpp b/include/client/glm/ext/vector_float3.hpp similarity index 100% rename from client/include/glm/ext/vector_float3.hpp rename to include/client/glm/ext/vector_float3.hpp diff --git a/client/include/glm/ext/vector_float3_precision.hpp b/include/client/glm/ext/vector_float3_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_float3_precision.hpp rename to include/client/glm/ext/vector_float3_precision.hpp diff --git a/client/include/glm/ext/vector_float4.hpp b/include/client/glm/ext/vector_float4.hpp similarity index 100% rename from client/include/glm/ext/vector_float4.hpp rename to include/client/glm/ext/vector_float4.hpp diff --git a/client/include/glm/ext/vector_float4_precision.hpp b/include/client/glm/ext/vector_float4_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_float4_precision.hpp rename to include/client/glm/ext/vector_float4_precision.hpp diff --git a/client/include/glm/ext/vector_int1.hpp b/include/client/glm/ext/vector_int1.hpp similarity index 100% rename from client/include/glm/ext/vector_int1.hpp rename to include/client/glm/ext/vector_int1.hpp diff --git a/client/include/glm/ext/vector_int1_precision.hpp b/include/client/glm/ext/vector_int1_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_int1_precision.hpp rename to include/client/glm/ext/vector_int1_precision.hpp diff --git a/client/include/glm/ext/vector_int2.hpp b/include/client/glm/ext/vector_int2.hpp similarity index 100% rename from client/include/glm/ext/vector_int2.hpp rename to include/client/glm/ext/vector_int2.hpp diff --git a/client/include/glm/ext/vector_int2_precision.hpp b/include/client/glm/ext/vector_int2_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_int2_precision.hpp rename to include/client/glm/ext/vector_int2_precision.hpp diff --git a/client/include/glm/ext/vector_int3.hpp b/include/client/glm/ext/vector_int3.hpp similarity index 100% rename from client/include/glm/ext/vector_int3.hpp rename to include/client/glm/ext/vector_int3.hpp diff --git a/client/include/glm/ext/vector_int3_precision.hpp b/include/client/glm/ext/vector_int3_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_int3_precision.hpp rename to include/client/glm/ext/vector_int3_precision.hpp diff --git a/client/include/glm/ext/vector_int4.hpp b/include/client/glm/ext/vector_int4.hpp similarity index 100% rename from client/include/glm/ext/vector_int4.hpp rename to include/client/glm/ext/vector_int4.hpp diff --git a/client/include/glm/ext/vector_int4_precision.hpp b/include/client/glm/ext/vector_int4_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_int4_precision.hpp rename to include/client/glm/ext/vector_int4_precision.hpp diff --git a/client/include/glm/ext/vector_relational.hpp b/include/client/glm/ext/vector_relational.hpp similarity index 100% rename from client/include/glm/ext/vector_relational.hpp rename to include/client/glm/ext/vector_relational.hpp diff --git a/client/include/glm/ext/vector_relational.inl b/include/client/glm/ext/vector_relational.inl similarity index 100% rename from client/include/glm/ext/vector_relational.inl rename to include/client/glm/ext/vector_relational.inl diff --git a/client/include/glm/ext/vector_uint1.hpp b/include/client/glm/ext/vector_uint1.hpp similarity index 100% rename from client/include/glm/ext/vector_uint1.hpp rename to include/client/glm/ext/vector_uint1.hpp diff --git a/client/include/glm/ext/vector_uint1_precision.hpp b/include/client/glm/ext/vector_uint1_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_uint1_precision.hpp rename to include/client/glm/ext/vector_uint1_precision.hpp diff --git a/client/include/glm/ext/vector_uint2.hpp b/include/client/glm/ext/vector_uint2.hpp similarity index 100% rename from client/include/glm/ext/vector_uint2.hpp rename to include/client/glm/ext/vector_uint2.hpp diff --git a/client/include/glm/ext/vector_uint2_precision.hpp b/include/client/glm/ext/vector_uint2_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_uint2_precision.hpp rename to include/client/glm/ext/vector_uint2_precision.hpp diff --git a/client/include/glm/ext/vector_uint3.hpp b/include/client/glm/ext/vector_uint3.hpp similarity index 100% rename from client/include/glm/ext/vector_uint3.hpp rename to include/client/glm/ext/vector_uint3.hpp diff --git a/client/include/glm/ext/vector_uint3_precision.hpp b/include/client/glm/ext/vector_uint3_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_uint3_precision.hpp rename to include/client/glm/ext/vector_uint3_precision.hpp diff --git a/client/include/glm/ext/vector_uint4.hpp b/include/client/glm/ext/vector_uint4.hpp similarity index 100% rename from client/include/glm/ext/vector_uint4.hpp rename to include/client/glm/ext/vector_uint4.hpp diff --git a/client/include/glm/ext/vector_uint4_precision.hpp b/include/client/glm/ext/vector_uint4_precision.hpp similarity index 100% rename from client/include/glm/ext/vector_uint4_precision.hpp rename to include/client/glm/ext/vector_uint4_precision.hpp diff --git a/client/include/glm/fwd.hpp b/include/client/glm/fwd.hpp similarity index 100% rename from client/include/glm/fwd.hpp rename to include/client/glm/fwd.hpp diff --git a/client/include/glm/geometric.hpp b/include/client/glm/geometric.hpp similarity index 100% rename from client/include/glm/geometric.hpp rename to include/client/glm/geometric.hpp diff --git a/client/include/glm/glm.hpp b/include/client/glm/glm.hpp similarity index 100% rename from client/include/glm/glm.hpp rename to include/client/glm/glm.hpp diff --git a/client/include/glm/gtc/bitfield.hpp b/include/client/glm/gtc/bitfield.hpp similarity index 100% rename from client/include/glm/gtc/bitfield.hpp rename to include/client/glm/gtc/bitfield.hpp diff --git a/client/include/glm/gtc/bitfield.inl b/include/client/glm/gtc/bitfield.inl similarity index 100% rename from client/include/glm/gtc/bitfield.inl rename to include/client/glm/gtc/bitfield.inl diff --git a/client/include/glm/gtc/color_space.hpp b/include/client/glm/gtc/color_space.hpp similarity index 100% rename from client/include/glm/gtc/color_space.hpp rename to include/client/glm/gtc/color_space.hpp diff --git a/client/include/glm/gtc/color_space.inl b/include/client/glm/gtc/color_space.inl similarity index 100% rename from client/include/glm/gtc/color_space.inl rename to include/client/glm/gtc/color_space.inl diff --git a/client/include/glm/gtc/constants.hpp b/include/client/glm/gtc/constants.hpp similarity index 100% rename from client/include/glm/gtc/constants.hpp rename to include/client/glm/gtc/constants.hpp diff --git a/client/include/glm/gtc/constants.inl b/include/client/glm/gtc/constants.inl similarity index 100% rename from client/include/glm/gtc/constants.inl rename to include/client/glm/gtc/constants.inl diff --git a/client/include/glm/gtc/epsilon.hpp b/include/client/glm/gtc/epsilon.hpp similarity index 100% rename from client/include/glm/gtc/epsilon.hpp rename to include/client/glm/gtc/epsilon.hpp diff --git a/client/include/glm/gtc/epsilon.inl b/include/client/glm/gtc/epsilon.inl similarity index 100% rename from client/include/glm/gtc/epsilon.inl rename to include/client/glm/gtc/epsilon.inl diff --git a/client/include/glm/gtc/integer.hpp b/include/client/glm/gtc/integer.hpp similarity index 100% rename from client/include/glm/gtc/integer.hpp rename to include/client/glm/gtc/integer.hpp diff --git a/client/include/glm/gtc/integer.inl b/include/client/glm/gtc/integer.inl similarity index 100% rename from client/include/glm/gtc/integer.inl rename to include/client/glm/gtc/integer.inl diff --git a/client/include/glm/gtc/matrix_access.hpp b/include/client/glm/gtc/matrix_access.hpp similarity index 100% rename from client/include/glm/gtc/matrix_access.hpp rename to include/client/glm/gtc/matrix_access.hpp diff --git a/client/include/glm/gtc/matrix_access.inl b/include/client/glm/gtc/matrix_access.inl similarity index 100% rename from client/include/glm/gtc/matrix_access.inl rename to include/client/glm/gtc/matrix_access.inl diff --git a/client/include/glm/gtc/matrix_integer.hpp b/include/client/glm/gtc/matrix_integer.hpp similarity index 100% rename from client/include/glm/gtc/matrix_integer.hpp rename to include/client/glm/gtc/matrix_integer.hpp diff --git a/client/include/glm/gtc/matrix_inverse.hpp b/include/client/glm/gtc/matrix_inverse.hpp similarity index 100% rename from client/include/glm/gtc/matrix_inverse.hpp rename to include/client/glm/gtc/matrix_inverse.hpp diff --git a/client/include/glm/gtc/matrix_inverse.inl b/include/client/glm/gtc/matrix_inverse.inl similarity index 100% rename from client/include/glm/gtc/matrix_inverse.inl rename to include/client/glm/gtc/matrix_inverse.inl diff --git a/client/include/glm/gtc/matrix_transform.hpp b/include/client/glm/gtc/matrix_transform.hpp similarity index 100% rename from client/include/glm/gtc/matrix_transform.hpp rename to include/client/glm/gtc/matrix_transform.hpp diff --git a/client/include/glm/gtc/matrix_transform.inl b/include/client/glm/gtc/matrix_transform.inl similarity index 100% rename from client/include/glm/gtc/matrix_transform.inl rename to include/client/glm/gtc/matrix_transform.inl diff --git a/client/include/glm/gtc/noise.hpp b/include/client/glm/gtc/noise.hpp similarity index 100% rename from client/include/glm/gtc/noise.hpp rename to include/client/glm/gtc/noise.hpp diff --git a/client/include/glm/gtc/noise.inl b/include/client/glm/gtc/noise.inl similarity index 100% rename from client/include/glm/gtc/noise.inl rename to include/client/glm/gtc/noise.inl diff --git a/client/include/glm/gtc/packing.hpp b/include/client/glm/gtc/packing.hpp similarity index 100% rename from client/include/glm/gtc/packing.hpp rename to include/client/glm/gtc/packing.hpp diff --git a/client/include/glm/gtc/packing.inl b/include/client/glm/gtc/packing.inl similarity index 100% rename from client/include/glm/gtc/packing.inl rename to include/client/glm/gtc/packing.inl diff --git a/client/include/glm/gtc/quaternion.hpp b/include/client/glm/gtc/quaternion.hpp similarity index 100% rename from client/include/glm/gtc/quaternion.hpp rename to include/client/glm/gtc/quaternion.hpp diff --git a/client/include/glm/gtc/quaternion.inl b/include/client/glm/gtc/quaternion.inl similarity index 100% rename from client/include/glm/gtc/quaternion.inl rename to include/client/glm/gtc/quaternion.inl diff --git a/client/include/glm/gtc/quaternion_simd.inl b/include/client/glm/gtc/quaternion_simd.inl similarity index 100% rename from client/include/glm/gtc/quaternion_simd.inl rename to include/client/glm/gtc/quaternion_simd.inl diff --git a/client/include/glm/gtc/random.hpp b/include/client/glm/gtc/random.hpp similarity index 100% rename from client/include/glm/gtc/random.hpp rename to include/client/glm/gtc/random.hpp diff --git a/client/include/glm/gtc/random.inl b/include/client/glm/gtc/random.inl similarity index 100% rename from client/include/glm/gtc/random.inl rename to include/client/glm/gtc/random.inl diff --git a/client/include/glm/gtc/reciprocal.hpp b/include/client/glm/gtc/reciprocal.hpp similarity index 100% rename from client/include/glm/gtc/reciprocal.hpp rename to include/client/glm/gtc/reciprocal.hpp diff --git a/client/include/glm/gtc/reciprocal.inl b/include/client/glm/gtc/reciprocal.inl similarity index 100% rename from client/include/glm/gtc/reciprocal.inl rename to include/client/glm/gtc/reciprocal.inl diff --git a/client/include/glm/gtc/round.hpp b/include/client/glm/gtc/round.hpp similarity index 100% rename from client/include/glm/gtc/round.hpp rename to include/client/glm/gtc/round.hpp diff --git a/client/include/glm/gtc/round.inl b/include/client/glm/gtc/round.inl similarity index 100% rename from client/include/glm/gtc/round.inl rename to include/client/glm/gtc/round.inl diff --git a/client/include/glm/gtc/type_aligned.hpp b/include/client/glm/gtc/type_aligned.hpp similarity index 100% rename from client/include/glm/gtc/type_aligned.hpp rename to include/client/glm/gtc/type_aligned.hpp diff --git a/client/include/glm/gtc/type_precision.hpp b/include/client/glm/gtc/type_precision.hpp similarity index 100% rename from client/include/glm/gtc/type_precision.hpp rename to include/client/glm/gtc/type_precision.hpp diff --git a/client/include/glm/gtc/type_precision.inl b/include/client/glm/gtc/type_precision.inl similarity index 100% rename from client/include/glm/gtc/type_precision.inl rename to include/client/glm/gtc/type_precision.inl diff --git a/client/include/glm/gtc/type_ptr.hpp b/include/client/glm/gtc/type_ptr.hpp similarity index 100% rename from client/include/glm/gtc/type_ptr.hpp rename to include/client/glm/gtc/type_ptr.hpp diff --git a/client/include/glm/gtc/type_ptr.inl b/include/client/glm/gtc/type_ptr.inl similarity index 100% rename from client/include/glm/gtc/type_ptr.inl rename to include/client/glm/gtc/type_ptr.inl diff --git a/client/include/glm/gtc/ulp.hpp b/include/client/glm/gtc/ulp.hpp similarity index 100% rename from client/include/glm/gtc/ulp.hpp rename to include/client/glm/gtc/ulp.hpp diff --git a/client/include/glm/gtc/ulp.inl b/include/client/glm/gtc/ulp.inl similarity index 100% rename from client/include/glm/gtc/ulp.inl rename to include/client/glm/gtc/ulp.inl diff --git a/client/include/glm/gtc/vec1.hpp b/include/client/glm/gtc/vec1.hpp similarity index 100% rename from client/include/glm/gtc/vec1.hpp rename to include/client/glm/gtc/vec1.hpp diff --git a/client/include/glm/gtx/associated_min_max.hpp b/include/client/glm/gtx/associated_min_max.hpp similarity index 100% rename from client/include/glm/gtx/associated_min_max.hpp rename to include/client/glm/gtx/associated_min_max.hpp diff --git a/client/include/glm/gtx/associated_min_max.inl b/include/client/glm/gtx/associated_min_max.inl similarity index 100% rename from client/include/glm/gtx/associated_min_max.inl rename to include/client/glm/gtx/associated_min_max.inl diff --git a/client/include/glm/gtx/bit.hpp b/include/client/glm/gtx/bit.hpp similarity index 100% rename from client/include/glm/gtx/bit.hpp rename to include/client/glm/gtx/bit.hpp diff --git a/client/include/glm/gtx/bit.inl b/include/client/glm/gtx/bit.inl similarity index 100% rename from client/include/glm/gtx/bit.inl rename to include/client/glm/gtx/bit.inl diff --git a/client/include/glm/gtx/closest_point.hpp b/include/client/glm/gtx/closest_point.hpp similarity index 100% rename from client/include/glm/gtx/closest_point.hpp rename to include/client/glm/gtx/closest_point.hpp diff --git a/client/include/glm/gtx/closest_point.inl b/include/client/glm/gtx/closest_point.inl similarity index 100% rename from client/include/glm/gtx/closest_point.inl rename to include/client/glm/gtx/closest_point.inl diff --git a/client/include/glm/gtx/color_encoding.hpp b/include/client/glm/gtx/color_encoding.hpp similarity index 100% rename from client/include/glm/gtx/color_encoding.hpp rename to include/client/glm/gtx/color_encoding.hpp diff --git a/client/include/glm/gtx/color_encoding.inl b/include/client/glm/gtx/color_encoding.inl similarity index 100% rename from client/include/glm/gtx/color_encoding.inl rename to include/client/glm/gtx/color_encoding.inl diff --git a/client/include/glm/gtx/color_space.hpp b/include/client/glm/gtx/color_space.hpp similarity index 100% rename from client/include/glm/gtx/color_space.hpp rename to include/client/glm/gtx/color_space.hpp diff --git a/client/include/glm/gtx/color_space.inl b/include/client/glm/gtx/color_space.inl similarity index 100% rename from client/include/glm/gtx/color_space.inl rename to include/client/glm/gtx/color_space.inl diff --git a/client/include/glm/gtx/color_space_YCoCg.hpp b/include/client/glm/gtx/color_space_YCoCg.hpp similarity index 100% rename from client/include/glm/gtx/color_space_YCoCg.hpp rename to include/client/glm/gtx/color_space_YCoCg.hpp diff --git a/client/include/glm/gtx/color_space_YCoCg.inl b/include/client/glm/gtx/color_space_YCoCg.inl similarity index 100% rename from client/include/glm/gtx/color_space_YCoCg.inl rename to include/client/glm/gtx/color_space_YCoCg.inl diff --git a/client/include/glm/gtx/common.hpp b/include/client/glm/gtx/common.hpp similarity index 100% rename from client/include/glm/gtx/common.hpp rename to include/client/glm/gtx/common.hpp diff --git a/client/include/glm/gtx/common.inl b/include/client/glm/gtx/common.inl similarity index 100% rename from client/include/glm/gtx/common.inl rename to include/client/glm/gtx/common.inl diff --git a/client/include/glm/gtx/compatibility.hpp b/include/client/glm/gtx/compatibility.hpp similarity index 100% rename from client/include/glm/gtx/compatibility.hpp rename to include/client/glm/gtx/compatibility.hpp diff --git a/client/include/glm/gtx/compatibility.inl b/include/client/glm/gtx/compatibility.inl similarity index 100% rename from client/include/glm/gtx/compatibility.inl rename to include/client/glm/gtx/compatibility.inl diff --git a/client/include/glm/gtx/component_wise.hpp b/include/client/glm/gtx/component_wise.hpp similarity index 100% rename from client/include/glm/gtx/component_wise.hpp rename to include/client/glm/gtx/component_wise.hpp diff --git a/client/include/glm/gtx/component_wise.inl b/include/client/glm/gtx/component_wise.inl similarity index 100% rename from client/include/glm/gtx/component_wise.inl rename to include/client/glm/gtx/component_wise.inl diff --git a/client/include/glm/gtx/dual_quaternion.hpp b/include/client/glm/gtx/dual_quaternion.hpp similarity index 100% rename from client/include/glm/gtx/dual_quaternion.hpp rename to include/client/glm/gtx/dual_quaternion.hpp diff --git a/client/include/glm/gtx/dual_quaternion.inl b/include/client/glm/gtx/dual_quaternion.inl similarity index 100% rename from client/include/glm/gtx/dual_quaternion.inl rename to include/client/glm/gtx/dual_quaternion.inl diff --git a/client/include/glm/gtx/easing.hpp b/include/client/glm/gtx/easing.hpp similarity index 100% rename from client/include/glm/gtx/easing.hpp rename to include/client/glm/gtx/easing.hpp diff --git a/client/include/glm/gtx/easing.inl b/include/client/glm/gtx/easing.inl similarity index 100% rename from client/include/glm/gtx/easing.inl rename to include/client/glm/gtx/easing.inl diff --git a/client/include/glm/gtx/euler_angles.hpp b/include/client/glm/gtx/euler_angles.hpp similarity index 100% rename from client/include/glm/gtx/euler_angles.hpp rename to include/client/glm/gtx/euler_angles.hpp diff --git a/client/include/glm/gtx/euler_angles.inl b/include/client/glm/gtx/euler_angles.inl similarity index 100% rename from client/include/glm/gtx/euler_angles.inl rename to include/client/glm/gtx/euler_angles.inl diff --git a/client/include/glm/gtx/extend.hpp b/include/client/glm/gtx/extend.hpp similarity index 100% rename from client/include/glm/gtx/extend.hpp rename to include/client/glm/gtx/extend.hpp diff --git a/client/include/glm/gtx/extend.inl b/include/client/glm/gtx/extend.inl similarity index 100% rename from client/include/glm/gtx/extend.inl rename to include/client/glm/gtx/extend.inl diff --git a/client/include/glm/gtx/extended_min_max.hpp b/include/client/glm/gtx/extended_min_max.hpp similarity index 100% rename from client/include/glm/gtx/extended_min_max.hpp rename to include/client/glm/gtx/extended_min_max.hpp diff --git a/client/include/glm/gtx/extended_min_max.inl b/include/client/glm/gtx/extended_min_max.inl similarity index 100% rename from client/include/glm/gtx/extended_min_max.inl rename to include/client/glm/gtx/extended_min_max.inl diff --git a/client/include/glm/gtx/exterior_product.hpp b/include/client/glm/gtx/exterior_product.hpp similarity index 100% rename from client/include/glm/gtx/exterior_product.hpp rename to include/client/glm/gtx/exterior_product.hpp diff --git a/client/include/glm/gtx/exterior_product.inl b/include/client/glm/gtx/exterior_product.inl similarity index 100% rename from client/include/glm/gtx/exterior_product.inl rename to include/client/glm/gtx/exterior_product.inl diff --git a/client/include/glm/gtx/fast_exponential.hpp b/include/client/glm/gtx/fast_exponential.hpp similarity index 100% rename from client/include/glm/gtx/fast_exponential.hpp rename to include/client/glm/gtx/fast_exponential.hpp diff --git a/client/include/glm/gtx/fast_exponential.inl b/include/client/glm/gtx/fast_exponential.inl similarity index 100% rename from client/include/glm/gtx/fast_exponential.inl rename to include/client/glm/gtx/fast_exponential.inl diff --git a/client/include/glm/gtx/fast_square_root.hpp b/include/client/glm/gtx/fast_square_root.hpp similarity index 100% rename from client/include/glm/gtx/fast_square_root.hpp rename to include/client/glm/gtx/fast_square_root.hpp diff --git a/client/include/glm/gtx/fast_square_root.inl b/include/client/glm/gtx/fast_square_root.inl similarity index 100% rename from client/include/glm/gtx/fast_square_root.inl rename to include/client/glm/gtx/fast_square_root.inl diff --git a/client/include/glm/gtx/fast_trigonometry.hpp b/include/client/glm/gtx/fast_trigonometry.hpp similarity index 100% rename from client/include/glm/gtx/fast_trigonometry.hpp rename to include/client/glm/gtx/fast_trigonometry.hpp diff --git a/client/include/glm/gtx/fast_trigonometry.inl b/include/client/glm/gtx/fast_trigonometry.inl similarity index 100% rename from client/include/glm/gtx/fast_trigonometry.inl rename to include/client/glm/gtx/fast_trigonometry.inl diff --git a/client/include/glm/gtx/float_notmalize.inl b/include/client/glm/gtx/float_notmalize.inl similarity index 100% rename from client/include/glm/gtx/float_notmalize.inl rename to include/client/glm/gtx/float_notmalize.inl diff --git a/client/include/glm/gtx/functions.hpp b/include/client/glm/gtx/functions.hpp similarity index 100% rename from client/include/glm/gtx/functions.hpp rename to include/client/glm/gtx/functions.hpp diff --git a/client/include/glm/gtx/functions.inl b/include/client/glm/gtx/functions.inl similarity index 100% rename from client/include/glm/gtx/functions.inl rename to include/client/glm/gtx/functions.inl diff --git a/client/include/glm/gtx/gradient_paint.hpp b/include/client/glm/gtx/gradient_paint.hpp similarity index 100% rename from client/include/glm/gtx/gradient_paint.hpp rename to include/client/glm/gtx/gradient_paint.hpp diff --git a/client/include/glm/gtx/gradient_paint.inl b/include/client/glm/gtx/gradient_paint.inl similarity index 100% rename from client/include/glm/gtx/gradient_paint.inl rename to include/client/glm/gtx/gradient_paint.inl diff --git a/client/include/glm/gtx/handed_coordinate_space.hpp b/include/client/glm/gtx/handed_coordinate_space.hpp similarity index 100% rename from client/include/glm/gtx/handed_coordinate_space.hpp rename to include/client/glm/gtx/handed_coordinate_space.hpp diff --git a/client/include/glm/gtx/handed_coordinate_space.inl b/include/client/glm/gtx/handed_coordinate_space.inl similarity index 100% rename from client/include/glm/gtx/handed_coordinate_space.inl rename to include/client/glm/gtx/handed_coordinate_space.inl diff --git a/client/include/glm/gtx/hash.hpp b/include/client/glm/gtx/hash.hpp similarity index 100% rename from client/include/glm/gtx/hash.hpp rename to include/client/glm/gtx/hash.hpp diff --git a/client/include/glm/gtx/hash.inl b/include/client/glm/gtx/hash.inl similarity index 100% rename from client/include/glm/gtx/hash.inl rename to include/client/glm/gtx/hash.inl diff --git a/client/include/glm/gtx/integer.hpp b/include/client/glm/gtx/integer.hpp similarity index 100% rename from client/include/glm/gtx/integer.hpp rename to include/client/glm/gtx/integer.hpp diff --git a/client/include/glm/gtx/integer.inl b/include/client/glm/gtx/integer.inl similarity index 100% rename from client/include/glm/gtx/integer.inl rename to include/client/glm/gtx/integer.inl diff --git a/client/include/glm/gtx/intersect.hpp b/include/client/glm/gtx/intersect.hpp similarity index 100% rename from client/include/glm/gtx/intersect.hpp rename to include/client/glm/gtx/intersect.hpp diff --git a/client/include/glm/gtx/intersect.inl b/include/client/glm/gtx/intersect.inl similarity index 100% rename from client/include/glm/gtx/intersect.inl rename to include/client/glm/gtx/intersect.inl diff --git a/client/include/glm/gtx/io.hpp b/include/client/glm/gtx/io.hpp similarity index 100% rename from client/include/glm/gtx/io.hpp rename to include/client/glm/gtx/io.hpp diff --git a/client/include/glm/gtx/io.inl b/include/client/glm/gtx/io.inl similarity index 100% rename from client/include/glm/gtx/io.inl rename to include/client/glm/gtx/io.inl diff --git a/client/include/glm/gtx/log_base.hpp b/include/client/glm/gtx/log_base.hpp similarity index 100% rename from client/include/glm/gtx/log_base.hpp rename to include/client/glm/gtx/log_base.hpp diff --git a/client/include/glm/gtx/log_base.inl b/include/client/glm/gtx/log_base.inl similarity index 100% rename from client/include/glm/gtx/log_base.inl rename to include/client/glm/gtx/log_base.inl diff --git a/client/include/glm/gtx/matrix_cross_product.hpp b/include/client/glm/gtx/matrix_cross_product.hpp similarity index 100% rename from client/include/glm/gtx/matrix_cross_product.hpp rename to include/client/glm/gtx/matrix_cross_product.hpp diff --git a/client/include/glm/gtx/matrix_cross_product.inl b/include/client/glm/gtx/matrix_cross_product.inl similarity index 100% rename from client/include/glm/gtx/matrix_cross_product.inl rename to include/client/glm/gtx/matrix_cross_product.inl diff --git a/client/include/glm/gtx/matrix_decompose.hpp b/include/client/glm/gtx/matrix_decompose.hpp similarity index 100% rename from client/include/glm/gtx/matrix_decompose.hpp rename to include/client/glm/gtx/matrix_decompose.hpp diff --git a/client/include/glm/gtx/matrix_decompose.inl b/include/client/glm/gtx/matrix_decompose.inl similarity index 100% rename from client/include/glm/gtx/matrix_decompose.inl rename to include/client/glm/gtx/matrix_decompose.inl diff --git a/client/include/glm/gtx/matrix_factorisation.hpp b/include/client/glm/gtx/matrix_factorisation.hpp similarity index 100% rename from client/include/glm/gtx/matrix_factorisation.hpp rename to include/client/glm/gtx/matrix_factorisation.hpp diff --git a/client/include/glm/gtx/matrix_factorisation.inl b/include/client/glm/gtx/matrix_factorisation.inl similarity index 100% rename from client/include/glm/gtx/matrix_factorisation.inl rename to include/client/glm/gtx/matrix_factorisation.inl diff --git a/client/include/glm/gtx/matrix_interpolation.hpp b/include/client/glm/gtx/matrix_interpolation.hpp similarity index 100% rename from client/include/glm/gtx/matrix_interpolation.hpp rename to include/client/glm/gtx/matrix_interpolation.hpp diff --git a/client/include/glm/gtx/matrix_interpolation.inl b/include/client/glm/gtx/matrix_interpolation.inl similarity index 100% rename from client/include/glm/gtx/matrix_interpolation.inl rename to include/client/glm/gtx/matrix_interpolation.inl diff --git a/client/include/glm/gtx/matrix_major_storage.hpp b/include/client/glm/gtx/matrix_major_storage.hpp similarity index 100% rename from client/include/glm/gtx/matrix_major_storage.hpp rename to include/client/glm/gtx/matrix_major_storage.hpp diff --git a/client/include/glm/gtx/matrix_major_storage.inl b/include/client/glm/gtx/matrix_major_storage.inl similarity index 100% rename from client/include/glm/gtx/matrix_major_storage.inl rename to include/client/glm/gtx/matrix_major_storage.inl diff --git a/client/include/glm/gtx/matrix_operation.hpp b/include/client/glm/gtx/matrix_operation.hpp similarity index 100% rename from client/include/glm/gtx/matrix_operation.hpp rename to include/client/glm/gtx/matrix_operation.hpp diff --git a/client/include/glm/gtx/matrix_operation.inl b/include/client/glm/gtx/matrix_operation.inl similarity index 100% rename from client/include/glm/gtx/matrix_operation.inl rename to include/client/glm/gtx/matrix_operation.inl diff --git a/client/include/glm/gtx/matrix_query.hpp b/include/client/glm/gtx/matrix_query.hpp similarity index 100% rename from client/include/glm/gtx/matrix_query.hpp rename to include/client/glm/gtx/matrix_query.hpp diff --git a/client/include/glm/gtx/matrix_query.inl b/include/client/glm/gtx/matrix_query.inl similarity index 100% rename from client/include/glm/gtx/matrix_query.inl rename to include/client/glm/gtx/matrix_query.inl diff --git a/client/include/glm/gtx/matrix_transform_2d.hpp b/include/client/glm/gtx/matrix_transform_2d.hpp similarity index 100% rename from client/include/glm/gtx/matrix_transform_2d.hpp rename to include/client/glm/gtx/matrix_transform_2d.hpp diff --git a/client/include/glm/gtx/matrix_transform_2d.inl b/include/client/glm/gtx/matrix_transform_2d.inl similarity index 100% rename from client/include/glm/gtx/matrix_transform_2d.inl rename to include/client/glm/gtx/matrix_transform_2d.inl diff --git a/client/include/glm/gtx/mixed_product.hpp b/include/client/glm/gtx/mixed_product.hpp similarity index 100% rename from client/include/glm/gtx/mixed_product.hpp rename to include/client/glm/gtx/mixed_product.hpp diff --git a/client/include/glm/gtx/mixed_product.inl b/include/client/glm/gtx/mixed_product.inl similarity index 100% rename from client/include/glm/gtx/mixed_product.inl rename to include/client/glm/gtx/mixed_product.inl diff --git a/client/include/glm/gtx/norm.hpp b/include/client/glm/gtx/norm.hpp similarity index 100% rename from client/include/glm/gtx/norm.hpp rename to include/client/glm/gtx/norm.hpp diff --git a/client/include/glm/gtx/norm.inl b/include/client/glm/gtx/norm.inl similarity index 100% rename from client/include/glm/gtx/norm.inl rename to include/client/glm/gtx/norm.inl diff --git a/client/include/glm/gtx/normal.hpp b/include/client/glm/gtx/normal.hpp similarity index 100% rename from client/include/glm/gtx/normal.hpp rename to include/client/glm/gtx/normal.hpp diff --git a/client/include/glm/gtx/normal.inl b/include/client/glm/gtx/normal.inl similarity index 100% rename from client/include/glm/gtx/normal.inl rename to include/client/glm/gtx/normal.inl diff --git a/client/include/glm/gtx/normalize_dot.hpp b/include/client/glm/gtx/normalize_dot.hpp similarity index 100% rename from client/include/glm/gtx/normalize_dot.hpp rename to include/client/glm/gtx/normalize_dot.hpp diff --git a/client/include/glm/gtx/normalize_dot.inl b/include/client/glm/gtx/normalize_dot.inl similarity index 100% rename from client/include/glm/gtx/normalize_dot.inl rename to include/client/glm/gtx/normalize_dot.inl diff --git a/client/include/glm/gtx/number_precision.hpp b/include/client/glm/gtx/number_precision.hpp similarity index 100% rename from client/include/glm/gtx/number_precision.hpp rename to include/client/glm/gtx/number_precision.hpp diff --git a/client/include/glm/gtx/number_precision.inl b/include/client/glm/gtx/number_precision.inl similarity index 100% rename from client/include/glm/gtx/number_precision.inl rename to include/client/glm/gtx/number_precision.inl diff --git a/client/include/glm/gtx/optimum_pow.hpp b/include/client/glm/gtx/optimum_pow.hpp similarity index 100% rename from client/include/glm/gtx/optimum_pow.hpp rename to include/client/glm/gtx/optimum_pow.hpp diff --git a/client/include/glm/gtx/optimum_pow.inl b/include/client/glm/gtx/optimum_pow.inl similarity index 100% rename from client/include/glm/gtx/optimum_pow.inl rename to include/client/glm/gtx/optimum_pow.inl diff --git a/client/include/glm/gtx/orthonormalize.hpp b/include/client/glm/gtx/orthonormalize.hpp similarity index 100% rename from client/include/glm/gtx/orthonormalize.hpp rename to include/client/glm/gtx/orthonormalize.hpp diff --git a/client/include/glm/gtx/orthonormalize.inl b/include/client/glm/gtx/orthonormalize.inl similarity index 100% rename from client/include/glm/gtx/orthonormalize.inl rename to include/client/glm/gtx/orthonormalize.inl diff --git a/client/include/glm/gtx/perpendicular.hpp b/include/client/glm/gtx/perpendicular.hpp similarity index 100% rename from client/include/glm/gtx/perpendicular.hpp rename to include/client/glm/gtx/perpendicular.hpp diff --git a/client/include/glm/gtx/perpendicular.inl b/include/client/glm/gtx/perpendicular.inl similarity index 100% rename from client/include/glm/gtx/perpendicular.inl rename to include/client/glm/gtx/perpendicular.inl diff --git a/client/include/glm/gtx/polar_coordinates.hpp b/include/client/glm/gtx/polar_coordinates.hpp similarity index 100% rename from client/include/glm/gtx/polar_coordinates.hpp rename to include/client/glm/gtx/polar_coordinates.hpp diff --git a/client/include/glm/gtx/polar_coordinates.inl b/include/client/glm/gtx/polar_coordinates.inl similarity index 100% rename from client/include/glm/gtx/polar_coordinates.inl rename to include/client/glm/gtx/polar_coordinates.inl diff --git a/client/include/glm/gtx/projection.hpp b/include/client/glm/gtx/projection.hpp similarity index 100% rename from client/include/glm/gtx/projection.hpp rename to include/client/glm/gtx/projection.hpp diff --git a/client/include/glm/gtx/projection.inl b/include/client/glm/gtx/projection.inl similarity index 100% rename from client/include/glm/gtx/projection.inl rename to include/client/glm/gtx/projection.inl diff --git a/client/include/glm/gtx/quaternion.hpp b/include/client/glm/gtx/quaternion.hpp similarity index 100% rename from client/include/glm/gtx/quaternion.hpp rename to include/client/glm/gtx/quaternion.hpp diff --git a/client/include/glm/gtx/quaternion.inl b/include/client/glm/gtx/quaternion.inl similarity index 100% rename from client/include/glm/gtx/quaternion.inl rename to include/client/glm/gtx/quaternion.inl diff --git a/client/include/glm/gtx/range.hpp b/include/client/glm/gtx/range.hpp similarity index 100% rename from client/include/glm/gtx/range.hpp rename to include/client/glm/gtx/range.hpp diff --git a/client/include/glm/gtx/raw_data.hpp b/include/client/glm/gtx/raw_data.hpp similarity index 100% rename from client/include/glm/gtx/raw_data.hpp rename to include/client/glm/gtx/raw_data.hpp diff --git a/client/include/glm/gtx/raw_data.inl b/include/client/glm/gtx/raw_data.inl similarity index 100% rename from client/include/glm/gtx/raw_data.inl rename to include/client/glm/gtx/raw_data.inl diff --git a/client/include/glm/gtx/rotate_normalized_axis.hpp b/include/client/glm/gtx/rotate_normalized_axis.hpp similarity index 100% rename from client/include/glm/gtx/rotate_normalized_axis.hpp rename to include/client/glm/gtx/rotate_normalized_axis.hpp diff --git a/client/include/glm/gtx/rotate_normalized_axis.inl b/include/client/glm/gtx/rotate_normalized_axis.inl similarity index 100% rename from client/include/glm/gtx/rotate_normalized_axis.inl rename to include/client/glm/gtx/rotate_normalized_axis.inl diff --git a/client/include/glm/gtx/rotate_vector.hpp b/include/client/glm/gtx/rotate_vector.hpp similarity index 100% rename from client/include/glm/gtx/rotate_vector.hpp rename to include/client/glm/gtx/rotate_vector.hpp diff --git a/client/include/glm/gtx/rotate_vector.inl b/include/client/glm/gtx/rotate_vector.inl similarity index 100% rename from client/include/glm/gtx/rotate_vector.inl rename to include/client/glm/gtx/rotate_vector.inl diff --git a/client/include/glm/gtx/scalar_multiplication.hpp b/include/client/glm/gtx/scalar_multiplication.hpp similarity index 100% rename from client/include/glm/gtx/scalar_multiplication.hpp rename to include/client/glm/gtx/scalar_multiplication.hpp diff --git a/client/include/glm/gtx/scalar_relational.hpp b/include/client/glm/gtx/scalar_relational.hpp similarity index 100% rename from client/include/glm/gtx/scalar_relational.hpp rename to include/client/glm/gtx/scalar_relational.hpp diff --git a/client/include/glm/gtx/scalar_relational.inl b/include/client/glm/gtx/scalar_relational.inl similarity index 100% rename from client/include/glm/gtx/scalar_relational.inl rename to include/client/glm/gtx/scalar_relational.inl diff --git a/client/include/glm/gtx/spline.hpp b/include/client/glm/gtx/spline.hpp similarity index 100% rename from client/include/glm/gtx/spline.hpp rename to include/client/glm/gtx/spline.hpp diff --git a/client/include/glm/gtx/spline.inl b/include/client/glm/gtx/spline.inl similarity index 100% rename from client/include/glm/gtx/spline.inl rename to include/client/glm/gtx/spline.inl diff --git a/client/include/glm/gtx/std_based_type.hpp b/include/client/glm/gtx/std_based_type.hpp similarity index 100% rename from client/include/glm/gtx/std_based_type.hpp rename to include/client/glm/gtx/std_based_type.hpp diff --git a/client/include/glm/gtx/std_based_type.inl b/include/client/glm/gtx/std_based_type.inl similarity index 100% rename from client/include/glm/gtx/std_based_type.inl rename to include/client/glm/gtx/std_based_type.inl diff --git a/client/include/glm/gtx/string_cast.hpp b/include/client/glm/gtx/string_cast.hpp similarity index 100% rename from client/include/glm/gtx/string_cast.hpp rename to include/client/glm/gtx/string_cast.hpp diff --git a/client/include/glm/gtx/string_cast.inl b/include/client/glm/gtx/string_cast.inl similarity index 100% rename from client/include/glm/gtx/string_cast.inl rename to include/client/glm/gtx/string_cast.inl diff --git a/client/include/glm/gtx/texture.hpp b/include/client/glm/gtx/texture.hpp similarity index 100% rename from client/include/glm/gtx/texture.hpp rename to include/client/glm/gtx/texture.hpp diff --git a/client/include/glm/gtx/texture.inl b/include/client/glm/gtx/texture.inl similarity index 100% rename from client/include/glm/gtx/texture.inl rename to include/client/glm/gtx/texture.inl diff --git a/client/include/glm/gtx/transform.hpp b/include/client/glm/gtx/transform.hpp similarity index 100% rename from client/include/glm/gtx/transform.hpp rename to include/client/glm/gtx/transform.hpp diff --git a/client/include/glm/gtx/transform.inl b/include/client/glm/gtx/transform.inl similarity index 100% rename from client/include/glm/gtx/transform.inl rename to include/client/glm/gtx/transform.inl diff --git a/client/include/glm/gtx/transform2.hpp b/include/client/glm/gtx/transform2.hpp similarity index 100% rename from client/include/glm/gtx/transform2.hpp rename to include/client/glm/gtx/transform2.hpp diff --git a/client/include/glm/gtx/transform2.inl b/include/client/glm/gtx/transform2.inl similarity index 100% rename from client/include/glm/gtx/transform2.inl rename to include/client/glm/gtx/transform2.inl diff --git a/client/include/glm/gtx/type_aligned.hpp b/include/client/glm/gtx/type_aligned.hpp similarity index 100% rename from client/include/glm/gtx/type_aligned.hpp rename to include/client/glm/gtx/type_aligned.hpp diff --git a/client/include/glm/gtx/type_aligned.inl b/include/client/glm/gtx/type_aligned.inl similarity index 100% rename from client/include/glm/gtx/type_aligned.inl rename to include/client/glm/gtx/type_aligned.inl diff --git a/client/include/glm/gtx/type_trait.hpp b/include/client/glm/gtx/type_trait.hpp similarity index 100% rename from client/include/glm/gtx/type_trait.hpp rename to include/client/glm/gtx/type_trait.hpp diff --git a/client/include/glm/gtx/type_trait.inl b/include/client/glm/gtx/type_trait.inl similarity index 100% rename from client/include/glm/gtx/type_trait.inl rename to include/client/glm/gtx/type_trait.inl diff --git a/client/include/glm/gtx/vec_swizzle.hpp b/include/client/glm/gtx/vec_swizzle.hpp similarity index 100% rename from client/include/glm/gtx/vec_swizzle.hpp rename to include/client/glm/gtx/vec_swizzle.hpp diff --git a/client/include/glm/gtx/vector_angle.hpp b/include/client/glm/gtx/vector_angle.hpp similarity index 100% rename from client/include/glm/gtx/vector_angle.hpp rename to include/client/glm/gtx/vector_angle.hpp diff --git a/client/include/glm/gtx/vector_angle.inl b/include/client/glm/gtx/vector_angle.inl similarity index 100% rename from client/include/glm/gtx/vector_angle.inl rename to include/client/glm/gtx/vector_angle.inl diff --git a/client/include/glm/gtx/vector_query.hpp b/include/client/glm/gtx/vector_query.hpp similarity index 100% rename from client/include/glm/gtx/vector_query.hpp rename to include/client/glm/gtx/vector_query.hpp diff --git a/client/include/glm/gtx/vector_query.inl b/include/client/glm/gtx/vector_query.inl similarity index 100% rename from client/include/glm/gtx/vector_query.inl rename to include/client/glm/gtx/vector_query.inl diff --git a/client/include/glm/gtx/wrap.hpp b/include/client/glm/gtx/wrap.hpp similarity index 100% rename from client/include/glm/gtx/wrap.hpp rename to include/client/glm/gtx/wrap.hpp diff --git a/client/include/glm/gtx/wrap.inl b/include/client/glm/gtx/wrap.inl similarity index 100% rename from client/include/glm/gtx/wrap.inl rename to include/client/glm/gtx/wrap.inl diff --git a/client/include/glm/integer.hpp b/include/client/glm/integer.hpp similarity index 100% rename from client/include/glm/integer.hpp rename to include/client/glm/integer.hpp diff --git a/client/include/glm/mat2x2.hpp b/include/client/glm/mat2x2.hpp similarity index 100% rename from client/include/glm/mat2x2.hpp rename to include/client/glm/mat2x2.hpp diff --git a/client/include/glm/mat2x3.hpp b/include/client/glm/mat2x3.hpp similarity index 100% rename from client/include/glm/mat2x3.hpp rename to include/client/glm/mat2x3.hpp diff --git a/client/include/glm/mat2x4.hpp b/include/client/glm/mat2x4.hpp similarity index 100% rename from client/include/glm/mat2x4.hpp rename to include/client/glm/mat2x4.hpp diff --git a/client/include/glm/mat3x2.hpp b/include/client/glm/mat3x2.hpp similarity index 100% rename from client/include/glm/mat3x2.hpp rename to include/client/glm/mat3x2.hpp diff --git a/client/include/glm/mat3x3.hpp b/include/client/glm/mat3x3.hpp similarity index 100% rename from client/include/glm/mat3x3.hpp rename to include/client/glm/mat3x3.hpp diff --git a/client/include/glm/mat3x4.hpp b/include/client/glm/mat3x4.hpp similarity index 100% rename from client/include/glm/mat3x4.hpp rename to include/client/glm/mat3x4.hpp diff --git a/client/include/glm/mat4x2.hpp b/include/client/glm/mat4x2.hpp similarity index 100% rename from client/include/glm/mat4x2.hpp rename to include/client/glm/mat4x2.hpp diff --git a/client/include/glm/mat4x3.hpp b/include/client/glm/mat4x3.hpp similarity index 100% rename from client/include/glm/mat4x3.hpp rename to include/client/glm/mat4x3.hpp diff --git a/client/include/glm/mat4x4.hpp b/include/client/glm/mat4x4.hpp similarity index 100% rename from client/include/glm/mat4x4.hpp rename to include/client/glm/mat4x4.hpp diff --git a/client/include/glm/matrix.hpp b/include/client/glm/matrix.hpp similarity index 100% rename from client/include/glm/matrix.hpp rename to include/client/glm/matrix.hpp diff --git a/client/include/glm/packing.hpp b/include/client/glm/packing.hpp similarity index 100% rename from client/include/glm/packing.hpp rename to include/client/glm/packing.hpp diff --git a/client/include/glm/simd/common.h b/include/client/glm/simd/common.h similarity index 100% rename from client/include/glm/simd/common.h rename to include/client/glm/simd/common.h diff --git a/client/include/glm/simd/exponential.h b/include/client/glm/simd/exponential.h similarity index 100% rename from client/include/glm/simd/exponential.h rename to include/client/glm/simd/exponential.h diff --git a/client/include/glm/simd/geometric.h b/include/client/glm/simd/geometric.h similarity index 100% rename from client/include/glm/simd/geometric.h rename to include/client/glm/simd/geometric.h diff --git a/client/include/glm/simd/integer.h b/include/client/glm/simd/integer.h similarity index 100% rename from client/include/glm/simd/integer.h rename to include/client/glm/simd/integer.h diff --git a/client/include/glm/simd/matrix.h b/include/client/glm/simd/matrix.h similarity index 100% rename from client/include/glm/simd/matrix.h rename to include/client/glm/simd/matrix.h diff --git a/client/include/glm/simd/packing.h b/include/client/glm/simd/packing.h similarity index 100% rename from client/include/glm/simd/packing.h rename to include/client/glm/simd/packing.h diff --git a/client/include/glm/simd/platform.h b/include/client/glm/simd/platform.h similarity index 100% rename from client/include/glm/simd/platform.h rename to include/client/glm/simd/platform.h diff --git a/client/include/glm/simd/trigonometric.h b/include/client/glm/simd/trigonometric.h similarity index 100% rename from client/include/glm/simd/trigonometric.h rename to include/client/glm/simd/trigonometric.h diff --git a/client/include/glm/simd/vector_relational.h b/include/client/glm/simd/vector_relational.h similarity index 100% rename from client/include/glm/simd/vector_relational.h rename to include/client/glm/simd/vector_relational.h diff --git a/client/include/glm/trigonometric.hpp b/include/client/glm/trigonometric.hpp similarity index 100% rename from client/include/glm/trigonometric.hpp rename to include/client/glm/trigonometric.hpp diff --git a/client/include/glm/vec2.hpp b/include/client/glm/vec2.hpp similarity index 100% rename from client/include/glm/vec2.hpp rename to include/client/glm/vec2.hpp diff --git a/client/include/glm/vec3.hpp b/include/client/glm/vec3.hpp similarity index 100% rename from client/include/glm/vec3.hpp rename to include/client/glm/vec3.hpp diff --git a/client/include/glm/vec4.hpp b/include/client/glm/vec4.hpp similarity index 100% rename from client/include/glm/vec4.hpp rename to include/client/glm/vec4.hpp diff --git a/client/include/glm/vector_relational.hpp b/include/client/glm/vector_relational.hpp similarity index 100% rename from client/include/glm/vector_relational.hpp rename to include/client/glm/vector_relational.hpp diff --git a/server/CMakeLists.txt b/server/CMakeLists.txt deleted file mode 100644 index 80bbd78..0000000 --- a/server/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -cmake_minimum_required(VERSION 2.6) -project(server) - -file(GLOB_RECURSE server_src - "src/*.hpp" - "src/*.cpp" - "src/*.c" - "src/*.h" -) - -if(CMAKE_COMPILER_IS_GNUCXX) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -static") -endif() - -add_executable(server ${server_src} src/db/_init_sql.hpp) - -if(${CMAKE_SYSTEM_NAME} STREQUAL "Windows") - target_link_libraries(server wsock32 ws2_32) -elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux") - target_link_libraries(server dl pthread nsl resolv) -else() - target_link_libraries(server dl pthread socket nsl resolv) -endif() - -install(TARGETS server RUNTIME DESTINATION bin) - diff --git a/server/hard_schema.db-journal b/server/hard_schema.db-journal deleted file mode 100644 index 927d431..0000000 Binary files a/server/hard_schema.db-journal and /dev/null differ diff --git a/client/src/main.cpp b/src/client/main.cpp similarity index 100% rename from client/src/main.cpp rename to src/client/main.cpp diff --git a/server/hard_schema.db b/src/server/_hard_schema.db similarity index 100% rename from server/hard_schema.db rename to src/server/_hard_schema.db diff --git a/server/mem_schema.db b/src/server/_mem_schema.db similarity index 100% rename from server/mem_schema.db rename to src/server/_mem_schema.db diff --git a/server/src/crypto/base64.cpp b/src/server/crypto/base64.cpp similarity index 100% rename from server/src/crypto/base64.cpp rename to src/server/crypto/base64.cpp diff --git a/server/src/crypto/base64.hpp b/src/server/crypto/base64.hpp similarity index 100% rename from server/src/crypto/base64.hpp rename to src/server/crypto/base64.hpp diff --git a/server/src/crypto/bcrypt.cpp b/src/server/crypto/bcrypt.cpp similarity index 100% rename from server/src/crypto/bcrypt.cpp rename to src/server/crypto/bcrypt.cpp diff --git a/server/src/crypto/bcrypt.hpp b/src/server/crypto/bcrypt.hpp similarity index 100% rename from server/src/crypto/bcrypt.hpp rename to src/server/crypto/bcrypt.hpp diff --git a/server/src/crypto/bfish.cpp b/src/server/crypto/bfish.cpp similarity index 100% rename from server/src/crypto/bfish.cpp rename to src/server/crypto/bfish.cpp diff --git a/server/src/crypto/bfish.hpp b/src/server/crypto/bfish.hpp similarity index 100% rename from server/src/crypto/bfish.hpp rename to src/server/crypto/bfish.hpp diff --git a/server/src/crypto/cipher.cpp b/src/server/crypto/cipher.cpp similarity index 100% rename from server/src/crypto/cipher.cpp rename to src/server/crypto/cipher.cpp diff --git a/server/src/crypto/cipher.hpp b/src/server/crypto/cipher.hpp similarity index 100% rename from server/src/crypto/cipher.hpp rename to src/server/crypto/cipher.hpp diff --git a/server/src/crypto/keyex.cpp b/src/server/crypto/keyex.cpp similarity index 100% rename from server/src/crypto/keyex.cpp rename to src/server/crypto/keyex.cpp diff --git a/server/src/crypto/keyex.hpp b/src/server/crypto/keyex.hpp similarity index 100% rename from server/src/crypto/keyex.hpp rename to src/server/crypto/keyex.hpp diff --git a/server/src/crypto/sha1.cpp b/src/server/crypto/sha1.cpp similarity index 100% rename from server/src/crypto/sha1.cpp rename to src/server/crypto/sha1.cpp diff --git a/server/src/crypto/sha1.hpp b/src/server/crypto/sha1.hpp similarity index 100% rename from server/src/crypto/sha1.hpp rename to src/server/crypto/sha1.hpp diff --git a/server/src/ctx/master.hpp b/src/server/ctx/master.hpp similarity index 100% rename from server/src/ctx/master.hpp rename to src/server/ctx/master.hpp diff --git a/server/src/ctx/master_client.cpp b/src/server/ctx/master_client.cpp similarity index 100% rename from server/src/ctx/master_client.cpp rename to src/server/ctx/master_client.cpp diff --git a/server/src/ctx/master_intra.cpp b/src/server/ctx/master_intra.cpp similarity index 100% rename from server/src/ctx/master_intra.cpp rename to src/server/ctx/master_intra.cpp diff --git a/server/src/ctx/slave.cpp b/src/server/ctx/slave.cpp similarity index 100% rename from server/src/ctx/slave.cpp rename to src/server/ctx/slave.cpp diff --git a/server/src/ctx/slave.hpp b/src/server/ctx/slave.hpp similarity index 100% rename from server/src/ctx/slave.hpp rename to src/server/ctx/slave.hpp diff --git a/server/src/db/_init_sql.hpp b/src/server/db/_init_sql.hpp similarity index 100% rename from server/src/db/_init_sql.hpp rename to src/server/db/_init_sql.hpp diff --git a/server/src/db/database.cpp b/src/server/db/database.cpp similarity index 100% rename from server/src/db/database.cpp rename to src/server/db/database.cpp diff --git a/server/src/db/database.hpp b/src/server/db/database.hpp similarity index 100% rename from server/src/db/database.hpp rename to src/server/db/database.hpp diff --git a/server/src/db/sqlite b/src/server/db/sqlite similarity index 100% rename from server/src/db/sqlite rename to src/server/db/sqlite diff --git a/server/src/hosts/master.hpp b/src/server/hosts/master.hpp similarity index 100% rename from server/src/hosts/master.hpp rename to src/server/hosts/master.hpp diff --git a/server/src/hosts/master_client.cpp b/src/server/hosts/master_client.cpp similarity index 100% rename from server/src/hosts/master_client.cpp rename to src/server/hosts/master_client.cpp diff --git a/server/src/hosts/master_intra.cpp b/src/server/hosts/master_intra.cpp similarity index 100% rename from server/src/hosts/master_intra.cpp rename to src/server/hosts/master_intra.cpp diff --git a/server/src/hosts/slave.cpp b/src/server/hosts/slave.cpp similarity index 100% rename from server/src/hosts/slave.cpp rename to src/server/hosts/slave.cpp diff --git a/server/src/hosts/slave.hpp b/src/server/hosts/slave.hpp similarity index 100% rename from server/src/hosts/slave.hpp rename to src/server/hosts/slave.hpp diff --git a/server/src/main.cpp b/src/server/main.cpp similarity index 100% rename from server/src/main.cpp rename to src/server/main.cpp diff --git a/server/src/sock/frame.cpp b/src/server/sock/frame.cpp similarity index 100% rename from server/src/sock/frame.cpp rename to src/server/sock/frame.cpp diff --git a/server/src/sock/frame.hpp b/src/server/sock/frame.hpp similarity index 100% rename from server/src/sock/frame.hpp rename to src/server/sock/frame.hpp diff --git a/server/src/sock/intrasock.cpp b/src/server/sock/intrasock.cpp similarity index 100% rename from server/src/sock/intrasock.cpp rename to src/server/sock/intrasock.cpp diff --git a/server/src/sock/intrasock.hpp b/src/server/sock/intrasock.hpp similarity index 100% rename from server/src/sock/intrasock.hpp rename to src/server/sock/intrasock.hpp diff --git a/server/src/sock/packet.cpp b/src/server/sock/packet.cpp similarity index 100% rename from server/src/sock/packet.cpp rename to src/server/sock/packet.cpp diff --git a/server/src/sock/packet.hpp b/src/server/sock/packet.hpp similarity index 100% rename from server/src/sock/packet.hpp rename to src/server/sock/packet.hpp diff --git a/server/src/sock/pool.hpp b/src/server/sock/pool.hpp similarity index 100% rename from server/src/sock/pool.hpp rename to src/server/sock/pool.hpp diff --git a/server/src/sock/scapesock.cpp b/src/server/sock/scapesock.cpp similarity index 100% rename from server/src/sock/scapesock.cpp rename to src/server/sock/scapesock.cpp diff --git a/server/src/sock/scapesock.hpp b/src/server/sock/scapesock.hpp similarity index 100% rename from server/src/sock/scapesock.hpp rename to src/server/sock/scapesock.hpp diff --git a/server/src/sock/tcpsock.hpp b/src/server/sock/tcpsock.hpp similarity index 100% rename from server/src/sock/tcpsock.hpp rename to src/server/sock/tcpsock.hpp diff --git a/server/src/sock/tcpsock_bsd.cpp b/src/server/sock/tcpsock_bsd.cpp similarity index 100% rename from server/src/sock/tcpsock_bsd.cpp rename to src/server/sock/tcpsock_bsd.cpp diff --git a/server/src/sock/tcpsock_win.cpp b/src/server/sock/tcpsock_win.cpp similarity index 100% rename from server/src/sock/tcpsock_win.cpp rename to src/server/sock/tcpsock_win.cpp diff --git a/server/src/utils/bigint.cpp b/src/server/utils/bigint.cpp similarity index 100% rename from server/src/utils/bigint.cpp rename to src/server/utils/bigint.cpp diff --git a/server/src/utils/bigint.hpp b/src/server/utils/bigint.hpp similarity index 100% rename from server/src/utils/bigint.hpp rename to src/server/utils/bigint.hpp diff --git a/server/src/utils/csprng.cpp b/src/server/utils/csprng.cpp similarity index 100% rename from server/src/utils/csprng.cpp rename to src/server/utils/csprng.cpp diff --git a/server/src/utils/csprng.hpp b/src/server/utils/csprng.hpp similarity index 100% rename from server/src/utils/csprng.hpp rename to src/server/utils/csprng.hpp diff --git a/server/src/utils/net.cpp b/src/server/utils/net.cpp similarity index 100% rename from server/src/utils/net.cpp rename to src/server/utils/net.cpp diff --git a/server/src/utils/net.hpp b/src/server/utils/net.hpp similarity index 100% rename from server/src/utils/net.hpp rename to src/server/utils/net.hpp diff --git a/server/src/utils/string.cpp b/src/server/utils/string.cpp similarity index 100% rename from server/src/utils/string.cpp rename to src/server/utils/string.cpp diff --git a/server/src/utils/string.hpp b/src/server/utils/string.hpp similarity index 100% rename from server/src/utils/string.hpp rename to src/server/utils/string.hpp diff --git a/server/src/utils/time.cpp b/src/server/utils/time.cpp similarity index 100% rename from server/src/utils/time.cpp rename to src/server/utils/time.cpp diff --git a/server/src/utils/time.hpp b/src/server/utils/time.hpp similarity index 100% rename from server/src/utils/time.hpp rename to src/server/utils/time.hpp