diff --git a/.gitmodules b/.gitmodules index 62890f2021..c72d8f71bf 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,7 +3,7 @@ url = https://github.com/wxWidgets/wxWidgets ignore = dirty [submodule "rpcs3-ffmpeg"] - path = ffmpeg + path = 3rdparty/ffmpeg url = https://github.com/hrydgard/ppsspp-ffmpeg [submodule "asmjit"] path = asmjit @@ -14,16 +14,16 @@ url = https://github.com/llvm-mirror/llvm branch = release_36 [submodule "minidx9"] - path = minidx9 + path = 3rdparty/minidx9 url = https://github.com/hrydgard/minidx9.git [submodule "rsx_program_decompiler"] path = rsx_program_decompiler url = https://github.com/RPCS3/rsx_program_decompiler [submodule "GSL"] - path = GSL + path = 3rdparty/GSL url = https://github.com/Microsoft/GSL.git [submodule "libpng"] - path = libpng + path = 3rdparty/libpng url = https://github.com/RPCS3/libpng [submodule "Vulkan/glslang"] path = Vulkan/glslang diff --git a/.travis.yml b/.travis.yml index 90a617b9c9..4d019dad18 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,7 +53,7 @@ before_install: fi; before_script: - - git submodule update --init asmjit ffmpeg rsx_program_decompiler GSL libpng Vulkan/glslang Vulkan/Vulkan-LoaderAndValidationLayers + - git submodule update --init asmjit 3rdparty/ffmpeg rsx_program_decompiler 3rdparty/GSL 3rdparty/libpng Vulkan/glslang Vulkan/Vulkan-LoaderAndValidationLayers - mkdir build - cd build - if [ "$TRAVIS_OS_NAME" = "linux" ]; then cmake ..; else cmake .. -DLLVM_DIR=/usr/local/opt/llvm36/lib/llvm-3.6/share/llvm/cmake; fi diff --git a/GL/glext.h b/3rdparty/GL/glext.h similarity index 100% rename from GL/glext.h rename to 3rdparty/GL/glext.h diff --git a/GSL b/3rdparty/GSL similarity index 100% rename from GSL rename to 3rdparty/GSL diff --git a/OpenAL/include/al.h b/3rdparty/OpenAL/include/al.h similarity index 100% rename from OpenAL/include/al.h rename to 3rdparty/OpenAL/include/al.h diff --git a/OpenAL/include/alc.h b/3rdparty/OpenAL/include/alc.h similarity index 100% rename from OpenAL/include/alc.h rename to 3rdparty/OpenAL/include/alc.h diff --git a/OpenAL/include/alext.h b/3rdparty/OpenAL/include/alext.h similarity index 100% rename from OpenAL/include/alext.h rename to 3rdparty/OpenAL/include/alext.h diff --git a/OpenAL/include/efx-creative.h b/3rdparty/OpenAL/include/efx-creative.h similarity index 100% rename from OpenAL/include/efx-creative.h rename to 3rdparty/OpenAL/include/efx-creative.h diff --git a/OpenAL/include/efx-presets.h b/3rdparty/OpenAL/include/efx-presets.h similarity index 100% rename from OpenAL/include/efx-presets.h rename to 3rdparty/OpenAL/include/efx-presets.h diff --git a/OpenAL/include/efx.h b/3rdparty/OpenAL/include/efx.h similarity index 100% rename from OpenAL/include/efx.h rename to 3rdparty/OpenAL/include/efx.h diff --git a/OpenAL/libs/Win64/OpenAL32.def b/3rdparty/OpenAL/libs/Win64/OpenAL32.def similarity index 100% rename from OpenAL/libs/Win64/OpenAL32.def rename to 3rdparty/OpenAL/libs/Win64/OpenAL32.def diff --git a/OpenAL/libs/Win64/OpenAL32.lib b/3rdparty/OpenAL/libs/Win64/OpenAL32.lib similarity index 100% rename from OpenAL/libs/Win64/OpenAL32.lib rename to 3rdparty/OpenAL/libs/Win64/OpenAL32.lib diff --git a/ffmpeg b/3rdparty/ffmpeg similarity index 100% rename from ffmpeg rename to 3rdparty/ffmpeg diff --git a/glm/CMakeLists.txt b/3rdparty/glm/CMakeLists.txt similarity index 100% rename from glm/CMakeLists.txt rename to 3rdparty/glm/CMakeLists.txt diff --git a/glm/CTestConfig.cmake b/3rdparty/glm/CTestConfig.cmake similarity index 100% rename from glm/CTestConfig.cmake rename to 3rdparty/glm/CTestConfig.cmake diff --git a/glm/cmake/GNUInstallDirs.cmake b/3rdparty/glm/cmake/GNUInstallDirs.cmake similarity index 100% rename from glm/cmake/GNUInstallDirs.cmake rename to 3rdparty/glm/cmake/GNUInstallDirs.cmake diff --git a/glm/copying.txt b/3rdparty/glm/copying.txt similarity index 100% rename from glm/copying.txt rename to 3rdparty/glm/copying.txt diff --git a/glm/glm/CMakeLists.txt b/3rdparty/glm/glm/CMakeLists.txt similarity index 100% rename from glm/glm/CMakeLists.txt rename to 3rdparty/glm/glm/CMakeLists.txt diff --git a/glm/glm/common.hpp b/3rdparty/glm/glm/common.hpp similarity index 100% rename from glm/glm/common.hpp rename to 3rdparty/glm/glm/common.hpp diff --git a/glm/glm/detail/_features.hpp b/3rdparty/glm/glm/detail/_features.hpp similarity index 100% rename from glm/glm/detail/_features.hpp rename to 3rdparty/glm/glm/detail/_features.hpp diff --git a/glm/glm/detail/_fixes.hpp b/3rdparty/glm/glm/detail/_fixes.hpp similarity index 100% rename from glm/glm/detail/_fixes.hpp rename to 3rdparty/glm/glm/detail/_fixes.hpp diff --git a/glm/glm/detail/_noise.hpp b/3rdparty/glm/glm/detail/_noise.hpp similarity index 100% rename from glm/glm/detail/_noise.hpp rename to 3rdparty/glm/glm/detail/_noise.hpp diff --git a/glm/glm/detail/_swizzle.hpp b/3rdparty/glm/glm/detail/_swizzle.hpp similarity index 100% rename from glm/glm/detail/_swizzle.hpp rename to 3rdparty/glm/glm/detail/_swizzle.hpp diff --git a/glm/glm/detail/_swizzle_func.hpp b/3rdparty/glm/glm/detail/_swizzle_func.hpp similarity index 100% rename from glm/glm/detail/_swizzle_func.hpp rename to 3rdparty/glm/glm/detail/_swizzle_func.hpp diff --git a/glm/glm/detail/_vectorize.hpp b/3rdparty/glm/glm/detail/_vectorize.hpp similarity index 100% rename from glm/glm/detail/_vectorize.hpp rename to 3rdparty/glm/glm/detail/_vectorize.hpp diff --git a/glm/glm/detail/dummy.cpp b/3rdparty/glm/glm/detail/dummy.cpp similarity index 100% rename from glm/glm/detail/dummy.cpp rename to 3rdparty/glm/glm/detail/dummy.cpp diff --git a/glm/glm/detail/func_common.hpp b/3rdparty/glm/glm/detail/func_common.hpp similarity index 100% rename from glm/glm/detail/func_common.hpp rename to 3rdparty/glm/glm/detail/func_common.hpp diff --git a/glm/glm/detail/func_common.inl b/3rdparty/glm/glm/detail/func_common.inl similarity index 100% rename from glm/glm/detail/func_common.inl rename to 3rdparty/glm/glm/detail/func_common.inl diff --git a/glm/glm/detail/func_exponential.hpp b/3rdparty/glm/glm/detail/func_exponential.hpp similarity index 100% rename from glm/glm/detail/func_exponential.hpp rename to 3rdparty/glm/glm/detail/func_exponential.hpp diff --git a/glm/glm/detail/func_exponential.inl b/3rdparty/glm/glm/detail/func_exponential.inl similarity index 100% rename from glm/glm/detail/func_exponential.inl rename to 3rdparty/glm/glm/detail/func_exponential.inl diff --git a/glm/glm/detail/func_geometric.hpp b/3rdparty/glm/glm/detail/func_geometric.hpp similarity index 100% rename from glm/glm/detail/func_geometric.hpp rename to 3rdparty/glm/glm/detail/func_geometric.hpp diff --git a/glm/glm/detail/func_geometric.inl b/3rdparty/glm/glm/detail/func_geometric.inl similarity index 100% rename from glm/glm/detail/func_geometric.inl rename to 3rdparty/glm/glm/detail/func_geometric.inl diff --git a/glm/glm/detail/func_integer.hpp b/3rdparty/glm/glm/detail/func_integer.hpp similarity index 100% rename from glm/glm/detail/func_integer.hpp rename to 3rdparty/glm/glm/detail/func_integer.hpp diff --git a/glm/glm/detail/func_integer.inl b/3rdparty/glm/glm/detail/func_integer.inl similarity index 100% rename from glm/glm/detail/func_integer.inl rename to 3rdparty/glm/glm/detail/func_integer.inl diff --git a/glm/glm/detail/func_matrix.hpp b/3rdparty/glm/glm/detail/func_matrix.hpp similarity index 100% rename from glm/glm/detail/func_matrix.hpp rename to 3rdparty/glm/glm/detail/func_matrix.hpp diff --git a/glm/glm/detail/func_matrix.inl b/3rdparty/glm/glm/detail/func_matrix.inl similarity index 100% rename from glm/glm/detail/func_matrix.inl rename to 3rdparty/glm/glm/detail/func_matrix.inl diff --git a/glm/glm/detail/func_noise.hpp b/3rdparty/glm/glm/detail/func_noise.hpp similarity index 100% rename from glm/glm/detail/func_noise.hpp rename to 3rdparty/glm/glm/detail/func_noise.hpp diff --git a/glm/glm/detail/func_noise.inl b/3rdparty/glm/glm/detail/func_noise.inl similarity index 100% rename from glm/glm/detail/func_noise.inl rename to 3rdparty/glm/glm/detail/func_noise.inl diff --git a/glm/glm/detail/func_packing.hpp b/3rdparty/glm/glm/detail/func_packing.hpp similarity index 100% rename from glm/glm/detail/func_packing.hpp rename to 3rdparty/glm/glm/detail/func_packing.hpp diff --git a/glm/glm/detail/func_packing.inl b/3rdparty/glm/glm/detail/func_packing.inl similarity index 100% rename from glm/glm/detail/func_packing.inl rename to 3rdparty/glm/glm/detail/func_packing.inl diff --git a/glm/glm/detail/func_trigonometric.hpp b/3rdparty/glm/glm/detail/func_trigonometric.hpp similarity index 100% rename from glm/glm/detail/func_trigonometric.hpp rename to 3rdparty/glm/glm/detail/func_trigonometric.hpp diff --git a/glm/glm/detail/func_trigonometric.inl b/3rdparty/glm/glm/detail/func_trigonometric.inl similarity index 100% rename from glm/glm/detail/func_trigonometric.inl rename to 3rdparty/glm/glm/detail/func_trigonometric.inl diff --git a/glm/glm/detail/func_vector_relational.hpp b/3rdparty/glm/glm/detail/func_vector_relational.hpp similarity index 100% rename from glm/glm/detail/func_vector_relational.hpp rename to 3rdparty/glm/glm/detail/func_vector_relational.hpp diff --git a/glm/glm/detail/func_vector_relational.inl b/3rdparty/glm/glm/detail/func_vector_relational.inl similarity index 100% rename from glm/glm/detail/func_vector_relational.inl rename to 3rdparty/glm/glm/detail/func_vector_relational.inl diff --git a/glm/glm/detail/glm.cpp b/3rdparty/glm/glm/detail/glm.cpp similarity index 100% rename from glm/glm/detail/glm.cpp rename to 3rdparty/glm/glm/detail/glm.cpp diff --git a/glm/glm/detail/intrinsic_common.hpp b/3rdparty/glm/glm/detail/intrinsic_common.hpp similarity index 100% rename from glm/glm/detail/intrinsic_common.hpp rename to 3rdparty/glm/glm/detail/intrinsic_common.hpp diff --git a/glm/glm/detail/intrinsic_common.inl b/3rdparty/glm/glm/detail/intrinsic_common.inl similarity index 100% rename from glm/glm/detail/intrinsic_common.inl rename to 3rdparty/glm/glm/detail/intrinsic_common.inl diff --git a/glm/glm/detail/intrinsic_exponential.hpp b/3rdparty/glm/glm/detail/intrinsic_exponential.hpp similarity index 100% rename from glm/glm/detail/intrinsic_exponential.hpp rename to 3rdparty/glm/glm/detail/intrinsic_exponential.hpp diff --git a/glm/glm/detail/intrinsic_exponential.inl b/3rdparty/glm/glm/detail/intrinsic_exponential.inl similarity index 100% rename from glm/glm/detail/intrinsic_exponential.inl rename to 3rdparty/glm/glm/detail/intrinsic_exponential.inl diff --git a/glm/glm/detail/intrinsic_geometric.hpp b/3rdparty/glm/glm/detail/intrinsic_geometric.hpp similarity index 100% rename from glm/glm/detail/intrinsic_geometric.hpp rename to 3rdparty/glm/glm/detail/intrinsic_geometric.hpp diff --git a/glm/glm/detail/intrinsic_geometric.inl b/3rdparty/glm/glm/detail/intrinsic_geometric.inl similarity index 100% rename from glm/glm/detail/intrinsic_geometric.inl rename to 3rdparty/glm/glm/detail/intrinsic_geometric.inl diff --git a/glm/glm/detail/intrinsic_integer.hpp b/3rdparty/glm/glm/detail/intrinsic_integer.hpp similarity index 100% rename from glm/glm/detail/intrinsic_integer.hpp rename to 3rdparty/glm/glm/detail/intrinsic_integer.hpp diff --git a/glm/glm/detail/intrinsic_integer.inl b/3rdparty/glm/glm/detail/intrinsic_integer.inl similarity index 100% rename from glm/glm/detail/intrinsic_integer.inl rename to 3rdparty/glm/glm/detail/intrinsic_integer.inl diff --git a/glm/glm/detail/intrinsic_matrix.hpp b/3rdparty/glm/glm/detail/intrinsic_matrix.hpp similarity index 100% rename from glm/glm/detail/intrinsic_matrix.hpp rename to 3rdparty/glm/glm/detail/intrinsic_matrix.hpp diff --git a/glm/glm/detail/intrinsic_matrix.inl b/3rdparty/glm/glm/detail/intrinsic_matrix.inl similarity index 100% rename from glm/glm/detail/intrinsic_matrix.inl rename to 3rdparty/glm/glm/detail/intrinsic_matrix.inl diff --git a/glm/glm/detail/intrinsic_trigonometric.hpp b/3rdparty/glm/glm/detail/intrinsic_trigonometric.hpp similarity index 100% rename from glm/glm/detail/intrinsic_trigonometric.hpp rename to 3rdparty/glm/glm/detail/intrinsic_trigonometric.hpp diff --git a/glm/glm/detail/intrinsic_trigonometric.inl b/3rdparty/glm/glm/detail/intrinsic_trigonometric.inl similarity index 100% rename from glm/glm/detail/intrinsic_trigonometric.inl rename to 3rdparty/glm/glm/detail/intrinsic_trigonometric.inl diff --git a/glm/glm/detail/intrinsic_vector_relational.hpp b/3rdparty/glm/glm/detail/intrinsic_vector_relational.hpp similarity index 100% rename from glm/glm/detail/intrinsic_vector_relational.hpp rename to 3rdparty/glm/glm/detail/intrinsic_vector_relational.hpp diff --git a/glm/glm/detail/intrinsic_vector_relational.inl b/3rdparty/glm/glm/detail/intrinsic_vector_relational.inl similarity index 100% rename from glm/glm/detail/intrinsic_vector_relational.inl rename to 3rdparty/glm/glm/detail/intrinsic_vector_relational.inl diff --git a/glm/glm/detail/precision.hpp b/3rdparty/glm/glm/detail/precision.hpp similarity index 100% rename from glm/glm/detail/precision.hpp rename to 3rdparty/glm/glm/detail/precision.hpp diff --git a/glm/glm/detail/setup.hpp b/3rdparty/glm/glm/detail/setup.hpp similarity index 100% rename from glm/glm/detail/setup.hpp rename to 3rdparty/glm/glm/detail/setup.hpp diff --git a/glm/glm/detail/type_float.hpp b/3rdparty/glm/glm/detail/type_float.hpp similarity index 100% rename from glm/glm/detail/type_float.hpp rename to 3rdparty/glm/glm/detail/type_float.hpp diff --git a/glm/glm/detail/type_gentype.hpp b/3rdparty/glm/glm/detail/type_gentype.hpp similarity index 100% rename from glm/glm/detail/type_gentype.hpp rename to 3rdparty/glm/glm/detail/type_gentype.hpp diff --git a/glm/glm/detail/type_gentype.inl b/3rdparty/glm/glm/detail/type_gentype.inl similarity index 100% rename from glm/glm/detail/type_gentype.inl rename to 3rdparty/glm/glm/detail/type_gentype.inl diff --git a/glm/glm/detail/type_half.hpp b/3rdparty/glm/glm/detail/type_half.hpp similarity index 100% rename from glm/glm/detail/type_half.hpp rename to 3rdparty/glm/glm/detail/type_half.hpp diff --git a/glm/glm/detail/type_half.inl b/3rdparty/glm/glm/detail/type_half.inl similarity index 100% rename from glm/glm/detail/type_half.inl rename to 3rdparty/glm/glm/detail/type_half.inl diff --git a/glm/glm/detail/type_int.hpp b/3rdparty/glm/glm/detail/type_int.hpp similarity index 100% rename from glm/glm/detail/type_int.hpp rename to 3rdparty/glm/glm/detail/type_int.hpp diff --git a/glm/glm/detail/type_mat.hpp b/3rdparty/glm/glm/detail/type_mat.hpp similarity index 100% rename from glm/glm/detail/type_mat.hpp rename to 3rdparty/glm/glm/detail/type_mat.hpp diff --git a/glm/glm/detail/type_mat.inl b/3rdparty/glm/glm/detail/type_mat.inl similarity index 100% rename from glm/glm/detail/type_mat.inl rename to 3rdparty/glm/glm/detail/type_mat.inl diff --git a/glm/glm/detail/type_mat2x2.hpp b/3rdparty/glm/glm/detail/type_mat2x2.hpp similarity index 100% rename from glm/glm/detail/type_mat2x2.hpp rename to 3rdparty/glm/glm/detail/type_mat2x2.hpp diff --git a/glm/glm/detail/type_mat2x2.inl b/3rdparty/glm/glm/detail/type_mat2x2.inl similarity index 100% rename from glm/glm/detail/type_mat2x2.inl rename to 3rdparty/glm/glm/detail/type_mat2x2.inl diff --git a/glm/glm/detail/type_mat2x3.hpp b/3rdparty/glm/glm/detail/type_mat2x3.hpp similarity index 100% rename from glm/glm/detail/type_mat2x3.hpp rename to 3rdparty/glm/glm/detail/type_mat2x3.hpp diff --git a/glm/glm/detail/type_mat2x3.inl b/3rdparty/glm/glm/detail/type_mat2x3.inl similarity index 100% rename from glm/glm/detail/type_mat2x3.inl rename to 3rdparty/glm/glm/detail/type_mat2x3.inl diff --git a/glm/glm/detail/type_mat2x4.hpp b/3rdparty/glm/glm/detail/type_mat2x4.hpp similarity index 100% rename from glm/glm/detail/type_mat2x4.hpp rename to 3rdparty/glm/glm/detail/type_mat2x4.hpp diff --git a/glm/glm/detail/type_mat2x4.inl b/3rdparty/glm/glm/detail/type_mat2x4.inl similarity index 100% rename from glm/glm/detail/type_mat2x4.inl rename to 3rdparty/glm/glm/detail/type_mat2x4.inl diff --git a/glm/glm/detail/type_mat3x2.hpp b/3rdparty/glm/glm/detail/type_mat3x2.hpp similarity index 100% rename from glm/glm/detail/type_mat3x2.hpp rename to 3rdparty/glm/glm/detail/type_mat3x2.hpp diff --git a/glm/glm/detail/type_mat3x2.inl b/3rdparty/glm/glm/detail/type_mat3x2.inl similarity index 100% rename from glm/glm/detail/type_mat3x2.inl rename to 3rdparty/glm/glm/detail/type_mat3x2.inl diff --git a/glm/glm/detail/type_mat3x3.hpp b/3rdparty/glm/glm/detail/type_mat3x3.hpp similarity index 100% rename from glm/glm/detail/type_mat3x3.hpp rename to 3rdparty/glm/glm/detail/type_mat3x3.hpp diff --git a/glm/glm/detail/type_mat3x3.inl b/3rdparty/glm/glm/detail/type_mat3x3.inl similarity index 100% rename from glm/glm/detail/type_mat3x3.inl rename to 3rdparty/glm/glm/detail/type_mat3x3.inl diff --git a/glm/glm/detail/type_mat3x4.hpp b/3rdparty/glm/glm/detail/type_mat3x4.hpp similarity index 100% rename from glm/glm/detail/type_mat3x4.hpp rename to 3rdparty/glm/glm/detail/type_mat3x4.hpp diff --git a/glm/glm/detail/type_mat3x4.inl b/3rdparty/glm/glm/detail/type_mat3x4.inl similarity index 100% rename from glm/glm/detail/type_mat3x4.inl rename to 3rdparty/glm/glm/detail/type_mat3x4.inl diff --git a/glm/glm/detail/type_mat4x2.hpp b/3rdparty/glm/glm/detail/type_mat4x2.hpp similarity index 100% rename from glm/glm/detail/type_mat4x2.hpp rename to 3rdparty/glm/glm/detail/type_mat4x2.hpp diff --git a/glm/glm/detail/type_mat4x2.inl b/3rdparty/glm/glm/detail/type_mat4x2.inl similarity index 100% rename from glm/glm/detail/type_mat4x2.inl rename to 3rdparty/glm/glm/detail/type_mat4x2.inl diff --git a/glm/glm/detail/type_mat4x3.hpp b/3rdparty/glm/glm/detail/type_mat4x3.hpp similarity index 100% rename from glm/glm/detail/type_mat4x3.hpp rename to 3rdparty/glm/glm/detail/type_mat4x3.hpp diff --git a/glm/glm/detail/type_mat4x3.inl b/3rdparty/glm/glm/detail/type_mat4x3.inl similarity index 100% rename from glm/glm/detail/type_mat4x3.inl rename to 3rdparty/glm/glm/detail/type_mat4x3.inl diff --git a/glm/glm/detail/type_mat4x4.hpp b/3rdparty/glm/glm/detail/type_mat4x4.hpp similarity index 100% rename from glm/glm/detail/type_mat4x4.hpp rename to 3rdparty/glm/glm/detail/type_mat4x4.hpp diff --git a/glm/glm/detail/type_mat4x4.inl b/3rdparty/glm/glm/detail/type_mat4x4.inl similarity index 100% rename from glm/glm/detail/type_mat4x4.inl rename to 3rdparty/glm/glm/detail/type_mat4x4.inl diff --git a/glm/glm/detail/type_vec.hpp b/3rdparty/glm/glm/detail/type_vec.hpp similarity index 100% rename from glm/glm/detail/type_vec.hpp rename to 3rdparty/glm/glm/detail/type_vec.hpp diff --git a/glm/glm/detail/type_vec.inl b/3rdparty/glm/glm/detail/type_vec.inl similarity index 100% rename from glm/glm/detail/type_vec.inl rename to 3rdparty/glm/glm/detail/type_vec.inl diff --git a/glm/glm/detail/type_vec1.hpp b/3rdparty/glm/glm/detail/type_vec1.hpp similarity index 100% rename from glm/glm/detail/type_vec1.hpp rename to 3rdparty/glm/glm/detail/type_vec1.hpp diff --git a/glm/glm/detail/type_vec1.inl b/3rdparty/glm/glm/detail/type_vec1.inl similarity index 100% rename from glm/glm/detail/type_vec1.inl rename to 3rdparty/glm/glm/detail/type_vec1.inl diff --git a/glm/glm/detail/type_vec2.hpp b/3rdparty/glm/glm/detail/type_vec2.hpp similarity index 100% rename from glm/glm/detail/type_vec2.hpp rename to 3rdparty/glm/glm/detail/type_vec2.hpp diff --git a/glm/glm/detail/type_vec2.inl b/3rdparty/glm/glm/detail/type_vec2.inl similarity index 100% rename from glm/glm/detail/type_vec2.inl rename to 3rdparty/glm/glm/detail/type_vec2.inl diff --git a/glm/glm/detail/type_vec3.hpp b/3rdparty/glm/glm/detail/type_vec3.hpp similarity index 100% rename from glm/glm/detail/type_vec3.hpp rename to 3rdparty/glm/glm/detail/type_vec3.hpp diff --git a/glm/glm/detail/type_vec3.inl b/3rdparty/glm/glm/detail/type_vec3.inl similarity index 100% rename from glm/glm/detail/type_vec3.inl rename to 3rdparty/glm/glm/detail/type_vec3.inl diff --git a/glm/glm/detail/type_vec4.hpp b/3rdparty/glm/glm/detail/type_vec4.hpp similarity index 100% rename from glm/glm/detail/type_vec4.hpp rename to 3rdparty/glm/glm/detail/type_vec4.hpp diff --git a/glm/glm/detail/type_vec4.inl b/3rdparty/glm/glm/detail/type_vec4.inl similarity index 100% rename from glm/glm/detail/type_vec4.inl rename to 3rdparty/glm/glm/detail/type_vec4.inl diff --git a/glm/glm/detail/type_vec4_avx.inl b/3rdparty/glm/glm/detail/type_vec4_avx.inl similarity index 100% rename from glm/glm/detail/type_vec4_avx.inl rename to 3rdparty/glm/glm/detail/type_vec4_avx.inl diff --git a/glm/glm/detail/type_vec4_avx2.inl b/3rdparty/glm/glm/detail/type_vec4_avx2.inl similarity index 100% rename from glm/glm/detail/type_vec4_avx2.inl rename to 3rdparty/glm/glm/detail/type_vec4_avx2.inl diff --git a/glm/glm/detail/type_vec4_sse2.inl b/3rdparty/glm/glm/detail/type_vec4_sse2.inl similarity index 100% rename from glm/glm/detail/type_vec4_sse2.inl rename to 3rdparty/glm/glm/detail/type_vec4_sse2.inl diff --git a/glm/glm/exponential.hpp b/3rdparty/glm/glm/exponential.hpp similarity index 100% rename from glm/glm/exponential.hpp rename to 3rdparty/glm/glm/exponential.hpp diff --git a/glm/glm/ext.hpp b/3rdparty/glm/glm/ext.hpp similarity index 100% rename from glm/glm/ext.hpp rename to 3rdparty/glm/glm/ext.hpp diff --git a/glm/glm/fwd.hpp b/3rdparty/glm/glm/fwd.hpp similarity index 100% rename from glm/glm/fwd.hpp rename to 3rdparty/glm/glm/fwd.hpp diff --git a/glm/glm/geometric.hpp b/3rdparty/glm/glm/geometric.hpp similarity index 100% rename from glm/glm/geometric.hpp rename to 3rdparty/glm/glm/geometric.hpp diff --git a/glm/glm/glm.hpp b/3rdparty/glm/glm/glm.hpp similarity index 100% rename from glm/glm/glm.hpp rename to 3rdparty/glm/glm/glm.hpp diff --git a/glm/glm/gtc/bitfield.hpp b/3rdparty/glm/glm/gtc/bitfield.hpp similarity index 100% rename from glm/glm/gtc/bitfield.hpp rename to 3rdparty/glm/glm/gtc/bitfield.hpp diff --git a/glm/glm/gtc/bitfield.inl b/3rdparty/glm/glm/gtc/bitfield.inl similarity index 100% rename from glm/glm/gtc/bitfield.inl rename to 3rdparty/glm/glm/gtc/bitfield.inl diff --git a/glm/glm/gtc/constants.hpp b/3rdparty/glm/glm/gtc/constants.hpp similarity index 100% rename from glm/glm/gtc/constants.hpp rename to 3rdparty/glm/glm/gtc/constants.hpp diff --git a/glm/glm/gtc/constants.inl b/3rdparty/glm/glm/gtc/constants.inl similarity index 100% rename from glm/glm/gtc/constants.inl rename to 3rdparty/glm/glm/gtc/constants.inl diff --git a/glm/glm/gtc/epsilon.hpp b/3rdparty/glm/glm/gtc/epsilon.hpp similarity index 100% rename from glm/glm/gtc/epsilon.hpp rename to 3rdparty/glm/glm/gtc/epsilon.hpp diff --git a/glm/glm/gtc/epsilon.inl b/3rdparty/glm/glm/gtc/epsilon.inl similarity index 100% rename from glm/glm/gtc/epsilon.inl rename to 3rdparty/glm/glm/gtc/epsilon.inl diff --git a/glm/glm/gtc/integer.hpp b/3rdparty/glm/glm/gtc/integer.hpp similarity index 100% rename from glm/glm/gtc/integer.hpp rename to 3rdparty/glm/glm/gtc/integer.hpp diff --git a/glm/glm/gtc/integer.inl b/3rdparty/glm/glm/gtc/integer.inl similarity index 100% rename from glm/glm/gtc/integer.inl rename to 3rdparty/glm/glm/gtc/integer.inl diff --git a/glm/glm/gtc/matrix_access.hpp b/3rdparty/glm/glm/gtc/matrix_access.hpp similarity index 100% rename from glm/glm/gtc/matrix_access.hpp rename to 3rdparty/glm/glm/gtc/matrix_access.hpp diff --git a/glm/glm/gtc/matrix_access.inl b/3rdparty/glm/glm/gtc/matrix_access.inl similarity index 100% rename from glm/glm/gtc/matrix_access.inl rename to 3rdparty/glm/glm/gtc/matrix_access.inl diff --git a/glm/glm/gtc/matrix_integer.hpp b/3rdparty/glm/glm/gtc/matrix_integer.hpp similarity index 100% rename from glm/glm/gtc/matrix_integer.hpp rename to 3rdparty/glm/glm/gtc/matrix_integer.hpp diff --git a/glm/glm/gtc/matrix_inverse.hpp b/3rdparty/glm/glm/gtc/matrix_inverse.hpp similarity index 100% rename from glm/glm/gtc/matrix_inverse.hpp rename to 3rdparty/glm/glm/gtc/matrix_inverse.hpp diff --git a/glm/glm/gtc/matrix_inverse.inl b/3rdparty/glm/glm/gtc/matrix_inverse.inl similarity index 100% rename from glm/glm/gtc/matrix_inverse.inl rename to 3rdparty/glm/glm/gtc/matrix_inverse.inl diff --git a/glm/glm/gtc/matrix_transform.hpp b/3rdparty/glm/glm/gtc/matrix_transform.hpp similarity index 100% rename from glm/glm/gtc/matrix_transform.hpp rename to 3rdparty/glm/glm/gtc/matrix_transform.hpp diff --git a/glm/glm/gtc/matrix_transform.inl b/3rdparty/glm/glm/gtc/matrix_transform.inl similarity index 100% rename from glm/glm/gtc/matrix_transform.inl rename to 3rdparty/glm/glm/gtc/matrix_transform.inl diff --git a/glm/glm/gtc/noise.hpp b/3rdparty/glm/glm/gtc/noise.hpp similarity index 100% rename from glm/glm/gtc/noise.hpp rename to 3rdparty/glm/glm/gtc/noise.hpp diff --git a/glm/glm/gtc/noise.inl b/3rdparty/glm/glm/gtc/noise.inl similarity index 100% rename from glm/glm/gtc/noise.inl rename to 3rdparty/glm/glm/gtc/noise.inl diff --git a/glm/glm/gtc/packing.hpp b/3rdparty/glm/glm/gtc/packing.hpp similarity index 100% rename from glm/glm/gtc/packing.hpp rename to 3rdparty/glm/glm/gtc/packing.hpp diff --git a/glm/glm/gtc/packing.inl b/3rdparty/glm/glm/gtc/packing.inl similarity index 100% rename from glm/glm/gtc/packing.inl rename to 3rdparty/glm/glm/gtc/packing.inl diff --git a/glm/glm/gtc/quaternion.hpp b/3rdparty/glm/glm/gtc/quaternion.hpp similarity index 100% rename from glm/glm/gtc/quaternion.hpp rename to 3rdparty/glm/glm/gtc/quaternion.hpp diff --git a/glm/glm/gtc/quaternion.inl b/3rdparty/glm/glm/gtc/quaternion.inl similarity index 100% rename from glm/glm/gtc/quaternion.inl rename to 3rdparty/glm/glm/gtc/quaternion.inl diff --git a/glm/glm/gtc/random.hpp b/3rdparty/glm/glm/gtc/random.hpp similarity index 100% rename from glm/glm/gtc/random.hpp rename to 3rdparty/glm/glm/gtc/random.hpp diff --git a/glm/glm/gtc/random.inl b/3rdparty/glm/glm/gtc/random.inl similarity index 100% rename from glm/glm/gtc/random.inl rename to 3rdparty/glm/glm/gtc/random.inl diff --git a/glm/glm/gtc/reciprocal.hpp b/3rdparty/glm/glm/gtc/reciprocal.hpp similarity index 100% rename from glm/glm/gtc/reciprocal.hpp rename to 3rdparty/glm/glm/gtc/reciprocal.hpp diff --git a/glm/glm/gtc/reciprocal.inl b/3rdparty/glm/glm/gtc/reciprocal.inl similarity index 100% rename from glm/glm/gtc/reciprocal.inl rename to 3rdparty/glm/glm/gtc/reciprocal.inl diff --git a/glm/glm/gtc/round.hpp b/3rdparty/glm/glm/gtc/round.hpp similarity index 100% rename from glm/glm/gtc/round.hpp rename to 3rdparty/glm/glm/gtc/round.hpp diff --git a/glm/glm/gtc/round.inl b/3rdparty/glm/glm/gtc/round.inl similarity index 100% rename from glm/glm/gtc/round.inl rename to 3rdparty/glm/glm/gtc/round.inl diff --git a/glm/glm/gtc/type_precision.hpp b/3rdparty/glm/glm/gtc/type_precision.hpp similarity index 100% rename from glm/glm/gtc/type_precision.hpp rename to 3rdparty/glm/glm/gtc/type_precision.hpp diff --git a/glm/glm/gtc/type_precision.inl b/3rdparty/glm/glm/gtc/type_precision.inl similarity index 100% rename from glm/glm/gtc/type_precision.inl rename to 3rdparty/glm/glm/gtc/type_precision.inl diff --git a/glm/glm/gtc/type_ptr.hpp b/3rdparty/glm/glm/gtc/type_ptr.hpp similarity index 100% rename from glm/glm/gtc/type_ptr.hpp rename to 3rdparty/glm/glm/gtc/type_ptr.hpp diff --git a/glm/glm/gtc/type_ptr.inl b/3rdparty/glm/glm/gtc/type_ptr.inl similarity index 100% rename from glm/glm/gtc/type_ptr.inl rename to 3rdparty/glm/glm/gtc/type_ptr.inl diff --git a/glm/glm/gtc/ulp.hpp b/3rdparty/glm/glm/gtc/ulp.hpp similarity index 100% rename from glm/glm/gtc/ulp.hpp rename to 3rdparty/glm/glm/gtc/ulp.hpp diff --git a/glm/glm/gtc/ulp.inl b/3rdparty/glm/glm/gtc/ulp.inl similarity index 100% rename from glm/glm/gtc/ulp.inl rename to 3rdparty/glm/glm/gtc/ulp.inl diff --git a/glm/glm/gtc/vec1.hpp b/3rdparty/glm/glm/gtc/vec1.hpp similarity index 100% rename from glm/glm/gtc/vec1.hpp rename to 3rdparty/glm/glm/gtc/vec1.hpp diff --git a/glm/glm/gtc/vec1.inl b/3rdparty/glm/glm/gtc/vec1.inl similarity index 100% rename from glm/glm/gtc/vec1.inl rename to 3rdparty/glm/glm/gtc/vec1.inl diff --git a/glm/glm/gtx/associated_min_max.hpp b/3rdparty/glm/glm/gtx/associated_min_max.hpp similarity index 100% rename from glm/glm/gtx/associated_min_max.hpp rename to 3rdparty/glm/glm/gtx/associated_min_max.hpp diff --git a/glm/glm/gtx/associated_min_max.inl b/3rdparty/glm/glm/gtx/associated_min_max.inl similarity index 100% rename from glm/glm/gtx/associated_min_max.inl rename to 3rdparty/glm/glm/gtx/associated_min_max.inl diff --git a/glm/glm/gtx/bit.hpp b/3rdparty/glm/glm/gtx/bit.hpp similarity index 100% rename from glm/glm/gtx/bit.hpp rename to 3rdparty/glm/glm/gtx/bit.hpp diff --git a/glm/glm/gtx/bit.inl b/3rdparty/glm/glm/gtx/bit.inl similarity index 100% rename from glm/glm/gtx/bit.inl rename to 3rdparty/glm/glm/gtx/bit.inl diff --git a/glm/glm/gtx/closest_point.hpp b/3rdparty/glm/glm/gtx/closest_point.hpp similarity index 100% rename from glm/glm/gtx/closest_point.hpp rename to 3rdparty/glm/glm/gtx/closest_point.hpp diff --git a/glm/glm/gtx/closest_point.inl b/3rdparty/glm/glm/gtx/closest_point.inl similarity index 100% rename from glm/glm/gtx/closest_point.inl rename to 3rdparty/glm/glm/gtx/closest_point.inl diff --git a/glm/glm/gtx/color_space.hpp b/3rdparty/glm/glm/gtx/color_space.hpp similarity index 100% rename from glm/glm/gtx/color_space.hpp rename to 3rdparty/glm/glm/gtx/color_space.hpp diff --git a/glm/glm/gtx/color_space.inl b/3rdparty/glm/glm/gtx/color_space.inl similarity index 100% rename from glm/glm/gtx/color_space.inl rename to 3rdparty/glm/glm/gtx/color_space.inl diff --git a/glm/glm/gtx/color_space_YCoCg.hpp b/3rdparty/glm/glm/gtx/color_space_YCoCg.hpp similarity index 100% rename from glm/glm/gtx/color_space_YCoCg.hpp rename to 3rdparty/glm/glm/gtx/color_space_YCoCg.hpp diff --git a/glm/glm/gtx/color_space_YCoCg.inl b/3rdparty/glm/glm/gtx/color_space_YCoCg.inl similarity index 100% rename from glm/glm/gtx/color_space_YCoCg.inl rename to 3rdparty/glm/glm/gtx/color_space_YCoCg.inl diff --git a/glm/glm/gtx/common.hpp b/3rdparty/glm/glm/gtx/common.hpp similarity index 100% rename from glm/glm/gtx/common.hpp rename to 3rdparty/glm/glm/gtx/common.hpp diff --git a/glm/glm/gtx/common.inl b/3rdparty/glm/glm/gtx/common.inl similarity index 100% rename from glm/glm/gtx/common.inl rename to 3rdparty/glm/glm/gtx/common.inl diff --git a/glm/glm/gtx/compatibility.hpp b/3rdparty/glm/glm/gtx/compatibility.hpp similarity index 100% rename from glm/glm/gtx/compatibility.hpp rename to 3rdparty/glm/glm/gtx/compatibility.hpp diff --git a/glm/glm/gtx/compatibility.inl b/3rdparty/glm/glm/gtx/compatibility.inl similarity index 100% rename from glm/glm/gtx/compatibility.inl rename to 3rdparty/glm/glm/gtx/compatibility.inl diff --git a/glm/glm/gtx/component_wise.hpp b/3rdparty/glm/glm/gtx/component_wise.hpp similarity index 100% rename from glm/glm/gtx/component_wise.hpp rename to 3rdparty/glm/glm/gtx/component_wise.hpp diff --git a/glm/glm/gtx/component_wise.inl b/3rdparty/glm/glm/gtx/component_wise.inl similarity index 100% rename from glm/glm/gtx/component_wise.inl rename to 3rdparty/glm/glm/gtx/component_wise.inl diff --git a/glm/glm/gtx/dual_quaternion.hpp b/3rdparty/glm/glm/gtx/dual_quaternion.hpp similarity index 100% rename from glm/glm/gtx/dual_quaternion.hpp rename to 3rdparty/glm/glm/gtx/dual_quaternion.hpp diff --git a/glm/glm/gtx/dual_quaternion.inl b/3rdparty/glm/glm/gtx/dual_quaternion.inl similarity index 100% rename from glm/glm/gtx/dual_quaternion.inl rename to 3rdparty/glm/glm/gtx/dual_quaternion.inl diff --git a/glm/glm/gtx/euler_angles.hpp b/3rdparty/glm/glm/gtx/euler_angles.hpp similarity index 100% rename from glm/glm/gtx/euler_angles.hpp rename to 3rdparty/glm/glm/gtx/euler_angles.hpp diff --git a/glm/glm/gtx/euler_angles.inl b/3rdparty/glm/glm/gtx/euler_angles.inl similarity index 100% rename from glm/glm/gtx/euler_angles.inl rename to 3rdparty/glm/glm/gtx/euler_angles.inl diff --git a/glm/glm/gtx/extend.hpp b/3rdparty/glm/glm/gtx/extend.hpp similarity index 100% rename from glm/glm/gtx/extend.hpp rename to 3rdparty/glm/glm/gtx/extend.hpp diff --git a/glm/glm/gtx/extend.inl b/3rdparty/glm/glm/gtx/extend.inl similarity index 100% rename from glm/glm/gtx/extend.inl rename to 3rdparty/glm/glm/gtx/extend.inl diff --git a/glm/glm/gtx/extented_min_max.hpp b/3rdparty/glm/glm/gtx/extented_min_max.hpp similarity index 100% rename from glm/glm/gtx/extented_min_max.hpp rename to 3rdparty/glm/glm/gtx/extented_min_max.hpp diff --git a/glm/glm/gtx/extented_min_max.inl b/3rdparty/glm/glm/gtx/extented_min_max.inl similarity index 100% rename from glm/glm/gtx/extented_min_max.inl rename to 3rdparty/glm/glm/gtx/extented_min_max.inl diff --git a/glm/glm/gtx/fast_exponential.hpp b/3rdparty/glm/glm/gtx/fast_exponential.hpp similarity index 100% rename from glm/glm/gtx/fast_exponential.hpp rename to 3rdparty/glm/glm/gtx/fast_exponential.hpp diff --git a/glm/glm/gtx/fast_exponential.inl b/3rdparty/glm/glm/gtx/fast_exponential.inl similarity index 100% rename from glm/glm/gtx/fast_exponential.inl rename to 3rdparty/glm/glm/gtx/fast_exponential.inl diff --git a/glm/glm/gtx/fast_square_root.hpp b/3rdparty/glm/glm/gtx/fast_square_root.hpp similarity index 100% rename from glm/glm/gtx/fast_square_root.hpp rename to 3rdparty/glm/glm/gtx/fast_square_root.hpp diff --git a/glm/glm/gtx/fast_square_root.inl b/3rdparty/glm/glm/gtx/fast_square_root.inl similarity index 100% rename from glm/glm/gtx/fast_square_root.inl rename to 3rdparty/glm/glm/gtx/fast_square_root.inl diff --git a/glm/glm/gtx/fast_trigonometry.hpp b/3rdparty/glm/glm/gtx/fast_trigonometry.hpp similarity index 100% rename from glm/glm/gtx/fast_trigonometry.hpp rename to 3rdparty/glm/glm/gtx/fast_trigonometry.hpp diff --git a/glm/glm/gtx/fast_trigonometry.inl b/3rdparty/glm/glm/gtx/fast_trigonometry.inl similarity index 100% rename from glm/glm/gtx/fast_trigonometry.inl rename to 3rdparty/glm/glm/gtx/fast_trigonometry.inl diff --git a/glm/glm/gtx/gradient_paint.hpp b/3rdparty/glm/glm/gtx/gradient_paint.hpp similarity index 100% rename from glm/glm/gtx/gradient_paint.hpp rename to 3rdparty/glm/glm/gtx/gradient_paint.hpp diff --git a/glm/glm/gtx/gradient_paint.inl b/3rdparty/glm/glm/gtx/gradient_paint.inl similarity index 100% rename from glm/glm/gtx/gradient_paint.inl rename to 3rdparty/glm/glm/gtx/gradient_paint.inl diff --git a/glm/glm/gtx/handed_coordinate_space.hpp b/3rdparty/glm/glm/gtx/handed_coordinate_space.hpp similarity index 100% rename from glm/glm/gtx/handed_coordinate_space.hpp rename to 3rdparty/glm/glm/gtx/handed_coordinate_space.hpp diff --git a/glm/glm/gtx/handed_coordinate_space.inl b/3rdparty/glm/glm/gtx/handed_coordinate_space.inl similarity index 100% rename from glm/glm/gtx/handed_coordinate_space.inl rename to 3rdparty/glm/glm/gtx/handed_coordinate_space.inl diff --git a/glm/glm/gtx/integer.hpp b/3rdparty/glm/glm/gtx/integer.hpp similarity index 100% rename from glm/glm/gtx/integer.hpp rename to 3rdparty/glm/glm/gtx/integer.hpp diff --git a/glm/glm/gtx/integer.inl b/3rdparty/glm/glm/gtx/integer.inl similarity index 100% rename from glm/glm/gtx/integer.inl rename to 3rdparty/glm/glm/gtx/integer.inl diff --git a/glm/glm/gtx/intersect.hpp b/3rdparty/glm/glm/gtx/intersect.hpp similarity index 100% rename from glm/glm/gtx/intersect.hpp rename to 3rdparty/glm/glm/gtx/intersect.hpp diff --git a/glm/glm/gtx/intersect.inl b/3rdparty/glm/glm/gtx/intersect.inl similarity index 100% rename from glm/glm/gtx/intersect.inl rename to 3rdparty/glm/glm/gtx/intersect.inl diff --git a/glm/glm/gtx/io.hpp b/3rdparty/glm/glm/gtx/io.hpp similarity index 100% rename from glm/glm/gtx/io.hpp rename to 3rdparty/glm/glm/gtx/io.hpp diff --git a/glm/glm/gtx/io.inl b/3rdparty/glm/glm/gtx/io.inl similarity index 100% rename from glm/glm/gtx/io.inl rename to 3rdparty/glm/glm/gtx/io.inl diff --git a/glm/glm/gtx/log_base.hpp b/3rdparty/glm/glm/gtx/log_base.hpp similarity index 100% rename from glm/glm/gtx/log_base.hpp rename to 3rdparty/glm/glm/gtx/log_base.hpp diff --git a/glm/glm/gtx/log_base.inl b/3rdparty/glm/glm/gtx/log_base.inl similarity index 100% rename from glm/glm/gtx/log_base.inl rename to 3rdparty/glm/glm/gtx/log_base.inl diff --git a/glm/glm/gtx/matrix_cross_product.hpp b/3rdparty/glm/glm/gtx/matrix_cross_product.hpp similarity index 100% rename from glm/glm/gtx/matrix_cross_product.hpp rename to 3rdparty/glm/glm/gtx/matrix_cross_product.hpp diff --git a/glm/glm/gtx/matrix_cross_product.inl b/3rdparty/glm/glm/gtx/matrix_cross_product.inl similarity index 100% rename from glm/glm/gtx/matrix_cross_product.inl rename to 3rdparty/glm/glm/gtx/matrix_cross_product.inl diff --git a/glm/glm/gtx/matrix_decompose.hpp b/3rdparty/glm/glm/gtx/matrix_decompose.hpp similarity index 100% rename from glm/glm/gtx/matrix_decompose.hpp rename to 3rdparty/glm/glm/gtx/matrix_decompose.hpp diff --git a/glm/glm/gtx/matrix_decompose.inl b/3rdparty/glm/glm/gtx/matrix_decompose.inl similarity index 100% rename from glm/glm/gtx/matrix_decompose.inl rename to 3rdparty/glm/glm/gtx/matrix_decompose.inl diff --git a/glm/glm/gtx/matrix_interpolation.hpp b/3rdparty/glm/glm/gtx/matrix_interpolation.hpp similarity index 100% rename from glm/glm/gtx/matrix_interpolation.hpp rename to 3rdparty/glm/glm/gtx/matrix_interpolation.hpp diff --git a/glm/glm/gtx/matrix_interpolation.inl b/3rdparty/glm/glm/gtx/matrix_interpolation.inl similarity index 100% rename from glm/glm/gtx/matrix_interpolation.inl rename to 3rdparty/glm/glm/gtx/matrix_interpolation.inl diff --git a/glm/glm/gtx/matrix_major_storage.hpp b/3rdparty/glm/glm/gtx/matrix_major_storage.hpp similarity index 100% rename from glm/glm/gtx/matrix_major_storage.hpp rename to 3rdparty/glm/glm/gtx/matrix_major_storage.hpp diff --git a/glm/glm/gtx/matrix_major_storage.inl b/3rdparty/glm/glm/gtx/matrix_major_storage.inl similarity index 100% rename from glm/glm/gtx/matrix_major_storage.inl rename to 3rdparty/glm/glm/gtx/matrix_major_storage.inl diff --git a/glm/glm/gtx/matrix_operation.hpp b/3rdparty/glm/glm/gtx/matrix_operation.hpp similarity index 100% rename from glm/glm/gtx/matrix_operation.hpp rename to 3rdparty/glm/glm/gtx/matrix_operation.hpp diff --git a/glm/glm/gtx/matrix_operation.inl b/3rdparty/glm/glm/gtx/matrix_operation.inl similarity index 100% rename from glm/glm/gtx/matrix_operation.inl rename to 3rdparty/glm/glm/gtx/matrix_operation.inl diff --git a/glm/glm/gtx/matrix_query.hpp b/3rdparty/glm/glm/gtx/matrix_query.hpp similarity index 100% rename from glm/glm/gtx/matrix_query.hpp rename to 3rdparty/glm/glm/gtx/matrix_query.hpp diff --git a/glm/glm/gtx/matrix_query.inl b/3rdparty/glm/glm/gtx/matrix_query.inl similarity index 100% rename from glm/glm/gtx/matrix_query.inl rename to 3rdparty/glm/glm/gtx/matrix_query.inl diff --git a/glm/glm/gtx/matrix_transform_2d.hpp b/3rdparty/glm/glm/gtx/matrix_transform_2d.hpp similarity index 100% rename from glm/glm/gtx/matrix_transform_2d.hpp rename to 3rdparty/glm/glm/gtx/matrix_transform_2d.hpp diff --git a/glm/glm/gtx/matrix_transform_2d.inl b/3rdparty/glm/glm/gtx/matrix_transform_2d.inl similarity index 100% rename from glm/glm/gtx/matrix_transform_2d.inl rename to 3rdparty/glm/glm/gtx/matrix_transform_2d.inl diff --git a/glm/glm/gtx/mixed_product.hpp b/3rdparty/glm/glm/gtx/mixed_product.hpp similarity index 100% rename from glm/glm/gtx/mixed_product.hpp rename to 3rdparty/glm/glm/gtx/mixed_product.hpp diff --git a/glm/glm/gtx/mixed_product.inl b/3rdparty/glm/glm/gtx/mixed_product.inl similarity index 100% rename from glm/glm/gtx/mixed_product.inl rename to 3rdparty/glm/glm/gtx/mixed_product.inl diff --git a/glm/glm/gtx/multiple.hpp b/3rdparty/glm/glm/gtx/multiple.hpp similarity index 100% rename from glm/glm/gtx/multiple.hpp rename to 3rdparty/glm/glm/gtx/multiple.hpp diff --git a/glm/glm/gtx/multiple.inl b/3rdparty/glm/glm/gtx/multiple.inl similarity index 100% rename from glm/glm/gtx/multiple.inl rename to 3rdparty/glm/glm/gtx/multiple.inl diff --git a/glm/glm/gtx/norm.hpp b/3rdparty/glm/glm/gtx/norm.hpp similarity index 100% rename from glm/glm/gtx/norm.hpp rename to 3rdparty/glm/glm/gtx/norm.hpp diff --git a/glm/glm/gtx/norm.inl b/3rdparty/glm/glm/gtx/norm.inl similarity index 100% rename from glm/glm/gtx/norm.inl rename to 3rdparty/glm/glm/gtx/norm.inl diff --git a/glm/glm/gtx/normal.hpp b/3rdparty/glm/glm/gtx/normal.hpp similarity index 100% rename from glm/glm/gtx/normal.hpp rename to 3rdparty/glm/glm/gtx/normal.hpp diff --git a/glm/glm/gtx/normal.inl b/3rdparty/glm/glm/gtx/normal.inl similarity index 100% rename from glm/glm/gtx/normal.inl rename to 3rdparty/glm/glm/gtx/normal.inl diff --git a/glm/glm/gtx/normalize_dot.hpp b/3rdparty/glm/glm/gtx/normalize_dot.hpp similarity index 100% rename from glm/glm/gtx/normalize_dot.hpp rename to 3rdparty/glm/glm/gtx/normalize_dot.hpp diff --git a/glm/glm/gtx/normalize_dot.inl b/3rdparty/glm/glm/gtx/normalize_dot.inl similarity index 100% rename from glm/glm/gtx/normalize_dot.inl rename to 3rdparty/glm/glm/gtx/normalize_dot.inl diff --git a/glm/glm/gtx/number_precision.hpp b/3rdparty/glm/glm/gtx/number_precision.hpp similarity index 100% rename from glm/glm/gtx/number_precision.hpp rename to 3rdparty/glm/glm/gtx/number_precision.hpp diff --git a/glm/glm/gtx/number_precision.inl b/3rdparty/glm/glm/gtx/number_precision.inl similarity index 100% rename from glm/glm/gtx/number_precision.inl rename to 3rdparty/glm/glm/gtx/number_precision.inl diff --git a/glm/glm/gtx/optimum_pow.hpp b/3rdparty/glm/glm/gtx/optimum_pow.hpp similarity index 100% rename from glm/glm/gtx/optimum_pow.hpp rename to 3rdparty/glm/glm/gtx/optimum_pow.hpp diff --git a/glm/glm/gtx/optimum_pow.inl b/3rdparty/glm/glm/gtx/optimum_pow.inl similarity index 100% rename from glm/glm/gtx/optimum_pow.inl rename to 3rdparty/glm/glm/gtx/optimum_pow.inl diff --git a/glm/glm/gtx/orthonormalize.hpp b/3rdparty/glm/glm/gtx/orthonormalize.hpp similarity index 100% rename from glm/glm/gtx/orthonormalize.hpp rename to 3rdparty/glm/glm/gtx/orthonormalize.hpp diff --git a/glm/glm/gtx/orthonormalize.inl b/3rdparty/glm/glm/gtx/orthonormalize.inl similarity index 100% rename from glm/glm/gtx/orthonormalize.inl rename to 3rdparty/glm/glm/gtx/orthonormalize.inl diff --git a/glm/glm/gtx/perpendicular.hpp b/3rdparty/glm/glm/gtx/perpendicular.hpp similarity index 100% rename from glm/glm/gtx/perpendicular.hpp rename to 3rdparty/glm/glm/gtx/perpendicular.hpp diff --git a/glm/glm/gtx/perpendicular.inl b/3rdparty/glm/glm/gtx/perpendicular.inl similarity index 100% rename from glm/glm/gtx/perpendicular.inl rename to 3rdparty/glm/glm/gtx/perpendicular.inl diff --git a/glm/glm/gtx/polar_coordinates.hpp b/3rdparty/glm/glm/gtx/polar_coordinates.hpp similarity index 100% rename from glm/glm/gtx/polar_coordinates.hpp rename to 3rdparty/glm/glm/gtx/polar_coordinates.hpp diff --git a/glm/glm/gtx/polar_coordinates.inl b/3rdparty/glm/glm/gtx/polar_coordinates.inl similarity index 100% rename from glm/glm/gtx/polar_coordinates.inl rename to 3rdparty/glm/glm/gtx/polar_coordinates.inl diff --git a/glm/glm/gtx/projection.hpp b/3rdparty/glm/glm/gtx/projection.hpp similarity index 100% rename from glm/glm/gtx/projection.hpp rename to 3rdparty/glm/glm/gtx/projection.hpp diff --git a/glm/glm/gtx/projection.inl b/3rdparty/glm/glm/gtx/projection.inl similarity index 100% rename from glm/glm/gtx/projection.inl rename to 3rdparty/glm/glm/gtx/projection.inl diff --git a/glm/glm/gtx/quaternion.hpp b/3rdparty/glm/glm/gtx/quaternion.hpp similarity index 100% rename from glm/glm/gtx/quaternion.hpp rename to 3rdparty/glm/glm/gtx/quaternion.hpp diff --git a/glm/glm/gtx/quaternion.inl b/3rdparty/glm/glm/gtx/quaternion.inl similarity index 100% rename from glm/glm/gtx/quaternion.inl rename to 3rdparty/glm/glm/gtx/quaternion.inl diff --git a/glm/glm/gtx/range.hpp b/3rdparty/glm/glm/gtx/range.hpp similarity index 100% rename from glm/glm/gtx/range.hpp rename to 3rdparty/glm/glm/gtx/range.hpp diff --git a/glm/glm/gtx/raw_data.hpp b/3rdparty/glm/glm/gtx/raw_data.hpp similarity index 100% rename from glm/glm/gtx/raw_data.hpp rename to 3rdparty/glm/glm/gtx/raw_data.hpp diff --git a/glm/glm/gtx/raw_data.inl b/3rdparty/glm/glm/gtx/raw_data.inl similarity index 100% rename from glm/glm/gtx/raw_data.inl rename to 3rdparty/glm/glm/gtx/raw_data.inl diff --git a/glm/glm/gtx/rotate_normalized_axis.hpp b/3rdparty/glm/glm/gtx/rotate_normalized_axis.hpp similarity index 100% rename from glm/glm/gtx/rotate_normalized_axis.hpp rename to 3rdparty/glm/glm/gtx/rotate_normalized_axis.hpp diff --git a/glm/glm/gtx/rotate_normalized_axis.inl b/3rdparty/glm/glm/gtx/rotate_normalized_axis.inl similarity index 100% rename from glm/glm/gtx/rotate_normalized_axis.inl rename to 3rdparty/glm/glm/gtx/rotate_normalized_axis.inl diff --git a/glm/glm/gtx/rotate_vector.hpp b/3rdparty/glm/glm/gtx/rotate_vector.hpp similarity index 100% rename from glm/glm/gtx/rotate_vector.hpp rename to 3rdparty/glm/glm/gtx/rotate_vector.hpp diff --git a/glm/glm/gtx/rotate_vector.inl b/3rdparty/glm/glm/gtx/rotate_vector.inl similarity index 100% rename from glm/glm/gtx/rotate_vector.inl rename to 3rdparty/glm/glm/gtx/rotate_vector.inl diff --git a/glm/glm/gtx/scalar_multiplication.hpp b/3rdparty/glm/glm/gtx/scalar_multiplication.hpp similarity index 100% rename from glm/glm/gtx/scalar_multiplication.hpp rename to 3rdparty/glm/glm/gtx/scalar_multiplication.hpp diff --git a/glm/glm/gtx/scalar_relational.hpp b/3rdparty/glm/glm/gtx/scalar_relational.hpp similarity index 100% rename from glm/glm/gtx/scalar_relational.hpp rename to 3rdparty/glm/glm/gtx/scalar_relational.hpp diff --git a/glm/glm/gtx/scalar_relational.inl b/3rdparty/glm/glm/gtx/scalar_relational.inl similarity index 100% rename from glm/glm/gtx/scalar_relational.inl rename to 3rdparty/glm/glm/gtx/scalar_relational.inl diff --git a/glm/glm/gtx/simd_mat4.hpp b/3rdparty/glm/glm/gtx/simd_mat4.hpp similarity index 100% rename from glm/glm/gtx/simd_mat4.hpp rename to 3rdparty/glm/glm/gtx/simd_mat4.hpp diff --git a/glm/glm/gtx/simd_mat4.inl b/3rdparty/glm/glm/gtx/simd_mat4.inl similarity index 100% rename from glm/glm/gtx/simd_mat4.inl rename to 3rdparty/glm/glm/gtx/simd_mat4.inl diff --git a/glm/glm/gtx/simd_quat.hpp b/3rdparty/glm/glm/gtx/simd_quat.hpp similarity index 100% rename from glm/glm/gtx/simd_quat.hpp rename to 3rdparty/glm/glm/gtx/simd_quat.hpp diff --git a/glm/glm/gtx/simd_quat.inl b/3rdparty/glm/glm/gtx/simd_quat.inl similarity index 100% rename from glm/glm/gtx/simd_quat.inl rename to 3rdparty/glm/glm/gtx/simd_quat.inl diff --git a/glm/glm/gtx/simd_vec4.hpp b/3rdparty/glm/glm/gtx/simd_vec4.hpp similarity index 100% rename from glm/glm/gtx/simd_vec4.hpp rename to 3rdparty/glm/glm/gtx/simd_vec4.hpp diff --git a/glm/glm/gtx/simd_vec4.inl b/3rdparty/glm/glm/gtx/simd_vec4.inl similarity index 100% rename from glm/glm/gtx/simd_vec4.inl rename to 3rdparty/glm/glm/gtx/simd_vec4.inl diff --git a/glm/glm/gtx/spline.hpp b/3rdparty/glm/glm/gtx/spline.hpp similarity index 100% rename from glm/glm/gtx/spline.hpp rename to 3rdparty/glm/glm/gtx/spline.hpp diff --git a/glm/glm/gtx/spline.inl b/3rdparty/glm/glm/gtx/spline.inl similarity index 100% rename from glm/glm/gtx/spline.inl rename to 3rdparty/glm/glm/gtx/spline.inl diff --git a/glm/glm/gtx/std_based_type.hpp b/3rdparty/glm/glm/gtx/std_based_type.hpp similarity index 100% rename from glm/glm/gtx/std_based_type.hpp rename to 3rdparty/glm/glm/gtx/std_based_type.hpp diff --git a/glm/glm/gtx/std_based_type.inl b/3rdparty/glm/glm/gtx/std_based_type.inl similarity index 100% rename from glm/glm/gtx/std_based_type.inl rename to 3rdparty/glm/glm/gtx/std_based_type.inl diff --git a/glm/glm/gtx/string_cast.hpp b/3rdparty/glm/glm/gtx/string_cast.hpp similarity index 100% rename from glm/glm/gtx/string_cast.hpp rename to 3rdparty/glm/glm/gtx/string_cast.hpp diff --git a/glm/glm/gtx/string_cast.inl b/3rdparty/glm/glm/gtx/string_cast.inl similarity index 100% rename from glm/glm/gtx/string_cast.inl rename to 3rdparty/glm/glm/gtx/string_cast.inl diff --git a/glm/glm/gtx/transform.hpp b/3rdparty/glm/glm/gtx/transform.hpp similarity index 100% rename from glm/glm/gtx/transform.hpp rename to 3rdparty/glm/glm/gtx/transform.hpp diff --git a/glm/glm/gtx/transform.inl b/3rdparty/glm/glm/gtx/transform.inl similarity index 100% rename from glm/glm/gtx/transform.inl rename to 3rdparty/glm/glm/gtx/transform.inl diff --git a/glm/glm/gtx/transform2.hpp b/3rdparty/glm/glm/gtx/transform2.hpp similarity index 100% rename from glm/glm/gtx/transform2.hpp rename to 3rdparty/glm/glm/gtx/transform2.hpp diff --git a/glm/glm/gtx/transform2.inl b/3rdparty/glm/glm/gtx/transform2.inl similarity index 100% rename from glm/glm/gtx/transform2.inl rename to 3rdparty/glm/glm/gtx/transform2.inl diff --git a/glm/glm/gtx/type_aligned.hpp b/3rdparty/glm/glm/gtx/type_aligned.hpp similarity index 100% rename from glm/glm/gtx/type_aligned.hpp rename to 3rdparty/glm/glm/gtx/type_aligned.hpp diff --git a/glm/glm/gtx/type_aligned.inl b/3rdparty/glm/glm/gtx/type_aligned.inl similarity index 100% rename from glm/glm/gtx/type_aligned.inl rename to 3rdparty/glm/glm/gtx/type_aligned.inl diff --git a/glm/glm/gtx/vector_angle.hpp b/3rdparty/glm/glm/gtx/vector_angle.hpp similarity index 100% rename from glm/glm/gtx/vector_angle.hpp rename to 3rdparty/glm/glm/gtx/vector_angle.hpp diff --git a/glm/glm/gtx/vector_angle.inl b/3rdparty/glm/glm/gtx/vector_angle.inl similarity index 100% rename from glm/glm/gtx/vector_angle.inl rename to 3rdparty/glm/glm/gtx/vector_angle.inl diff --git a/glm/glm/gtx/vector_query.hpp b/3rdparty/glm/glm/gtx/vector_query.hpp similarity index 100% rename from glm/glm/gtx/vector_query.hpp rename to 3rdparty/glm/glm/gtx/vector_query.hpp diff --git a/glm/glm/gtx/vector_query.inl b/3rdparty/glm/glm/gtx/vector_query.inl similarity index 100% rename from glm/glm/gtx/vector_query.inl rename to 3rdparty/glm/glm/gtx/vector_query.inl diff --git a/glm/glm/gtx/wrap.hpp b/3rdparty/glm/glm/gtx/wrap.hpp similarity index 100% rename from glm/glm/gtx/wrap.hpp rename to 3rdparty/glm/glm/gtx/wrap.hpp diff --git a/glm/glm/gtx/wrap.inl b/3rdparty/glm/glm/gtx/wrap.inl similarity index 100% rename from glm/glm/gtx/wrap.inl rename to 3rdparty/glm/glm/gtx/wrap.inl diff --git a/glm/glm/integer.hpp b/3rdparty/glm/glm/integer.hpp similarity index 100% rename from glm/glm/integer.hpp rename to 3rdparty/glm/glm/integer.hpp diff --git a/glm/glm/mat2x2.hpp b/3rdparty/glm/glm/mat2x2.hpp similarity index 100% rename from glm/glm/mat2x2.hpp rename to 3rdparty/glm/glm/mat2x2.hpp diff --git a/glm/glm/mat2x3.hpp b/3rdparty/glm/glm/mat2x3.hpp similarity index 100% rename from glm/glm/mat2x3.hpp rename to 3rdparty/glm/glm/mat2x3.hpp diff --git a/glm/glm/mat2x4.hpp b/3rdparty/glm/glm/mat2x4.hpp similarity index 100% rename from glm/glm/mat2x4.hpp rename to 3rdparty/glm/glm/mat2x4.hpp diff --git a/glm/glm/mat3x2.hpp b/3rdparty/glm/glm/mat3x2.hpp similarity index 100% rename from glm/glm/mat3x2.hpp rename to 3rdparty/glm/glm/mat3x2.hpp diff --git a/glm/glm/mat3x3.hpp b/3rdparty/glm/glm/mat3x3.hpp similarity index 100% rename from glm/glm/mat3x3.hpp rename to 3rdparty/glm/glm/mat3x3.hpp diff --git a/glm/glm/mat3x4.hpp b/3rdparty/glm/glm/mat3x4.hpp similarity index 100% rename from glm/glm/mat3x4.hpp rename to 3rdparty/glm/glm/mat3x4.hpp diff --git a/glm/glm/mat4x2.hpp b/3rdparty/glm/glm/mat4x2.hpp similarity index 100% rename from glm/glm/mat4x2.hpp rename to 3rdparty/glm/glm/mat4x2.hpp diff --git a/glm/glm/mat4x3.hpp b/3rdparty/glm/glm/mat4x3.hpp similarity index 100% rename from glm/glm/mat4x3.hpp rename to 3rdparty/glm/glm/mat4x3.hpp diff --git a/glm/glm/mat4x4.hpp b/3rdparty/glm/glm/mat4x4.hpp similarity index 100% rename from glm/glm/mat4x4.hpp rename to 3rdparty/glm/glm/mat4x4.hpp diff --git a/glm/glm/matrix.hpp b/3rdparty/glm/glm/matrix.hpp similarity index 100% rename from glm/glm/matrix.hpp rename to 3rdparty/glm/glm/matrix.hpp diff --git a/glm/glm/packing.hpp b/3rdparty/glm/glm/packing.hpp similarity index 100% rename from glm/glm/packing.hpp rename to 3rdparty/glm/glm/packing.hpp diff --git a/glm/glm/trigonometric.hpp b/3rdparty/glm/glm/trigonometric.hpp similarity index 100% rename from glm/glm/trigonometric.hpp rename to 3rdparty/glm/glm/trigonometric.hpp diff --git a/glm/glm/vec2.hpp b/3rdparty/glm/glm/vec2.hpp similarity index 100% rename from glm/glm/vec2.hpp rename to 3rdparty/glm/glm/vec2.hpp diff --git a/glm/glm/vec3.hpp b/3rdparty/glm/glm/vec3.hpp similarity index 100% rename from glm/glm/vec3.hpp rename to 3rdparty/glm/glm/vec3.hpp diff --git a/glm/glm/vec4.hpp b/3rdparty/glm/glm/vec4.hpp similarity index 100% rename from glm/glm/vec4.hpp rename to 3rdparty/glm/glm/vec4.hpp diff --git a/glm/glm/vector_relational.hpp b/3rdparty/glm/glm/vector_relational.hpp similarity index 100% rename from glm/glm/vector_relational.hpp rename to 3rdparty/glm/glm/vector_relational.hpp diff --git a/glm/readme.txt b/3rdparty/glm/readme.txt similarity index 100% rename from glm/readme.txt rename to 3rdparty/glm/readme.txt diff --git a/glm/util/CMakeLists.txt b/3rdparty/glm/util/CMakeLists.txt similarity index 100% rename from glm/util/CMakeLists.txt rename to 3rdparty/glm/util/CMakeLists.txt diff --git a/glm/util/FindGLM.cmake b/3rdparty/glm/util/FindGLM.cmake similarity index 100% rename from glm/util/FindGLM.cmake rename to 3rdparty/glm/util/FindGLM.cmake diff --git a/glm/util/autoexp.txt b/3rdparty/glm/util/autoexp.txt similarity index 100% rename from glm/util/autoexp.txt rename to 3rdparty/glm/util/autoexp.txt diff --git a/glm/util/autoexp.vc2010.dat b/3rdparty/glm/util/autoexp.vc2010.dat similarity index 100% rename from glm/util/autoexp.vc2010.dat rename to 3rdparty/glm/util/autoexp.vc2010.dat diff --git a/glm/util/glm.natvis b/3rdparty/glm/util/glm.natvis similarity index 100% rename from glm/util/glm.natvis rename to 3rdparty/glm/util/glm.natvis diff --git a/glm/util/usertype.dat b/3rdparty/glm/util/usertype.dat similarity index 100% rename from glm/util/usertype.dat rename to 3rdparty/glm/util/usertype.dat diff --git a/libpng b/3rdparty/libpng similarity index 100% rename from libpng rename to 3rdparty/libpng diff --git a/minidx12/Include/d2d1.h b/3rdparty/minidx12/Include/d2d1.h similarity index 100% rename from minidx12/Include/d2d1.h rename to 3rdparty/minidx12/Include/d2d1.h diff --git a/minidx12/Include/d2d1_1.h b/3rdparty/minidx12/Include/d2d1_1.h similarity index 100% rename from minidx12/Include/d2d1_1.h rename to 3rdparty/minidx12/Include/d2d1_1.h diff --git a/minidx12/Include/d2d1_1helper.h b/3rdparty/minidx12/Include/d2d1_1helper.h similarity index 100% rename from minidx12/Include/d2d1_1helper.h rename to 3rdparty/minidx12/Include/d2d1_1helper.h diff --git a/minidx12/Include/d2d1_2.h b/3rdparty/minidx12/Include/d2d1_2.h similarity index 100% rename from minidx12/Include/d2d1_2.h rename to 3rdparty/minidx12/Include/d2d1_2.h diff --git a/minidx12/Include/d2d1_2helper.h b/3rdparty/minidx12/Include/d2d1_2helper.h similarity index 100% rename from minidx12/Include/d2d1_2helper.h rename to 3rdparty/minidx12/Include/d2d1_2helper.h diff --git a/minidx12/Include/d2d1_3.h b/3rdparty/minidx12/Include/d2d1_3.h similarity index 100% rename from minidx12/Include/d2d1_3.h rename to 3rdparty/minidx12/Include/d2d1_3.h diff --git a/minidx12/Include/d2d1_3helper.h b/3rdparty/minidx12/Include/d2d1_3helper.h similarity index 100% rename from minidx12/Include/d2d1_3helper.h rename to 3rdparty/minidx12/Include/d2d1_3helper.h diff --git a/minidx12/Include/d2d1effects.h b/3rdparty/minidx12/Include/d2d1effects.h similarity index 100% rename from minidx12/Include/d2d1effects.h rename to 3rdparty/minidx12/Include/d2d1effects.h diff --git a/minidx12/Include/d2d1effects_1.h b/3rdparty/minidx12/Include/d2d1effects_1.h similarity index 100% rename from minidx12/Include/d2d1effects_1.h rename to 3rdparty/minidx12/Include/d2d1effects_1.h diff --git a/minidx12/Include/d2d1effects_2.h b/3rdparty/minidx12/Include/d2d1effects_2.h similarity index 100% rename from minidx12/Include/d2d1effects_2.h rename to 3rdparty/minidx12/Include/d2d1effects_2.h diff --git a/minidx12/Include/d3d10.h b/3rdparty/minidx12/Include/d3d10.h similarity index 100% rename from minidx12/Include/d3d10.h rename to 3rdparty/minidx12/Include/d3d10.h diff --git a/minidx12/Include/d3d10_1.h b/3rdparty/minidx12/Include/d3d10_1.h similarity index 100% rename from minidx12/Include/d3d10_1.h rename to 3rdparty/minidx12/Include/d3d10_1.h diff --git a/minidx12/Include/d3d10_1shader.h b/3rdparty/minidx12/Include/d3d10_1shader.h similarity index 100% rename from minidx12/Include/d3d10_1shader.h rename to 3rdparty/minidx12/Include/d3d10_1shader.h diff --git a/minidx12/Include/d3d11.h b/3rdparty/minidx12/Include/d3d11.h similarity index 100% rename from minidx12/Include/d3d11.h rename to 3rdparty/minidx12/Include/d3d11.h diff --git a/minidx12/Include/d3d11_1.h b/3rdparty/minidx12/Include/d3d11_1.h similarity index 100% rename from minidx12/Include/d3d11_1.h rename to 3rdparty/minidx12/Include/d3d11_1.h diff --git a/minidx12/Include/d3d11_2.h b/3rdparty/minidx12/Include/d3d11_2.h similarity index 100% rename from minidx12/Include/d3d11_2.h rename to 3rdparty/minidx12/Include/d3d11_2.h diff --git a/minidx12/Include/d3d11_3.h b/3rdparty/minidx12/Include/d3d11_3.h similarity index 100% rename from minidx12/Include/d3d11_3.h rename to 3rdparty/minidx12/Include/d3d11_3.h diff --git a/minidx12/Include/d3d11on12.h b/3rdparty/minidx12/Include/d3d11on12.h similarity index 100% rename from minidx12/Include/d3d11on12.h rename to 3rdparty/minidx12/Include/d3d11on12.h diff --git a/minidx12/Include/d3d11shader.h b/3rdparty/minidx12/Include/d3d11shader.h similarity index 100% rename from minidx12/Include/d3d11shader.h rename to 3rdparty/minidx12/Include/d3d11shader.h diff --git a/minidx12/Include/d3d12.h b/3rdparty/minidx12/Include/d3d12.h similarity index 100% rename from minidx12/Include/d3d12.h rename to 3rdparty/minidx12/Include/d3d12.h diff --git a/minidx12/Include/d3d12sdklayers.h b/3rdparty/minidx12/Include/d3d12sdklayers.h similarity index 100% rename from minidx12/Include/d3d12sdklayers.h rename to 3rdparty/minidx12/Include/d3d12sdklayers.h diff --git a/minidx12/Include/d3dcommon.h b/3rdparty/minidx12/Include/d3dcommon.h similarity index 100% rename from minidx12/Include/d3dcommon.h rename to 3rdparty/minidx12/Include/d3dcommon.h diff --git a/minidx12/Include/dcommon.h b/3rdparty/minidx12/Include/dcommon.h similarity index 100% rename from minidx12/Include/dcommon.h rename to 3rdparty/minidx12/Include/dcommon.h diff --git a/minidx12/Include/dwrite.h b/3rdparty/minidx12/Include/dwrite.h similarity index 100% rename from minidx12/Include/dwrite.h rename to 3rdparty/minidx12/Include/dwrite.h diff --git a/minidx12/Include/dwrite_1.h b/3rdparty/minidx12/Include/dwrite_1.h similarity index 100% rename from minidx12/Include/dwrite_1.h rename to 3rdparty/minidx12/Include/dwrite_1.h diff --git a/minidx12/Include/dwrite_2.h b/3rdparty/minidx12/Include/dwrite_2.h similarity index 100% rename from minidx12/Include/dwrite_2.h rename to 3rdparty/minidx12/Include/dwrite_2.h diff --git a/minidx12/Include/dwrite_3.h b/3rdparty/minidx12/Include/dwrite_3.h similarity index 100% rename from minidx12/Include/dwrite_3.h rename to 3rdparty/minidx12/Include/dwrite_3.h diff --git a/minidx12/Include/dxgi.h b/3rdparty/minidx12/Include/dxgi.h similarity index 100% rename from minidx12/Include/dxgi.h rename to 3rdparty/minidx12/Include/dxgi.h diff --git a/minidx12/Include/dxgi1_2.h b/3rdparty/minidx12/Include/dxgi1_2.h similarity index 100% rename from minidx12/Include/dxgi1_2.h rename to 3rdparty/minidx12/Include/dxgi1_2.h diff --git a/minidx12/Include/dxgi1_3.h b/3rdparty/minidx12/Include/dxgi1_3.h similarity index 100% rename from minidx12/Include/dxgi1_3.h rename to 3rdparty/minidx12/Include/dxgi1_3.h diff --git a/minidx12/Include/dxgi1_4.h b/3rdparty/minidx12/Include/dxgi1_4.h similarity index 100% rename from minidx12/Include/dxgi1_4.h rename to 3rdparty/minidx12/Include/dxgi1_4.h diff --git a/minidx12/Include/dxgiformat.h b/3rdparty/minidx12/Include/dxgiformat.h similarity index 100% rename from minidx12/Include/dxgiformat.h rename to 3rdparty/minidx12/Include/dxgiformat.h diff --git a/minidx12/Include/dxgitype.h b/3rdparty/minidx12/Include/dxgitype.h similarity index 100% rename from minidx12/Include/dxgitype.h rename to 3rdparty/minidx12/Include/dxgitype.h diff --git a/minidx12/Lib/d2d1.lib b/3rdparty/minidx12/Lib/d2d1.lib similarity index 100% rename from minidx12/Lib/d2d1.lib rename to 3rdparty/minidx12/Lib/d2d1.lib diff --git a/minidx12/Lib/dwrite.lib b/3rdparty/minidx12/Lib/dwrite.lib similarity index 100% rename from minidx12/Lib/dwrite.lib rename to 3rdparty/minidx12/Lib/dwrite.lib diff --git a/minidx12/Lib/dxgi.lib b/3rdparty/minidx12/Lib/dxgi.lib similarity index 100% rename from minidx12/Lib/dxgi.lib rename to 3rdparty/minidx12/Lib/dxgi.lib diff --git a/minidx9 b/3rdparty/minidx9 similarity index 100% rename from minidx9 rename to 3rdparty/minidx9 diff --git a/stblib/stb_image.h b/3rdparty/stblib/stb_image.h similarity index 100% rename from stblib/stb_image.h rename to 3rdparty/stblib/stb_image.h diff --git a/stblib/stb_truetype.h b/3rdparty/stblib/stb_truetype.h similarity index 100% rename from stblib/stb_truetype.h rename to 3rdparty/stblib/stb_truetype.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 73a9e800a1..4a7eaf462d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ set(PNG_SHARED OFF CACHE BOOL "Build shared lib." FORCE) set(PNG_TESTS OFF CACHE BOOL "Build tests." FORCE) add_subdirectory( asmjit ) -add_subdirectory( libpng ) +add_subdirectory( 3rdparty/libpng ) # TODO: do real installation, including copying directory structure set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${PROJECT_BINARY_DIR}/bin") set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${PROJECT_BINARY_DIR}/bin") diff --git a/appveyor.yml b/appveyor.yml index df2a926c91..c133abf365 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,7 +14,7 @@ branches: before_build: # until git for win 2.5 release with commit checkout - - git submodule update --init ffmpeg asmjit minidx9 rsx_program_decompiler GSL libpng Vulkan/glslang Vulkan/Vulkan-LoaderAndValidationLayers + - git submodule update --init 3rdparty/ffmpeg asmjit 3rdparty/minidx9 rsx_program_decompiler 3rdparty/GSL 3rdparty/libpng Vulkan/glslang Vulkan/Vulkan-LoaderAndValidationLayers - 7z x wxWidgets.7z -aos -oC:\rpcs3\wxWidgets > null - 7z x zlib.7z -aos -oC:\rpcs3\ > null - if %configuration%==Release (cmake -G "Visual Studio 14 Win64" -DZLIB_ROOT=C:/rpcs3/zlib/) @@ -28,7 +28,7 @@ install: - ps: Start-FileDownload 'https://402331b94f8e4b87ae2ef4677347f7956cf3861f.googledrive.com/host/0B6v_qtb9hkicfmt0NG0wTTRtUmF4X3VTQk5Oc2JidEVKVnUteDA1dXdrYlNsVW9kREpsSHc/llvmlibs.7z' - ps: Start-FileDownload 'https://402331b94f8e4b87ae2ef4677347f7956cf3861f.googledrive.com/host/0B6v_qtb9hkicfmt0NG0wTTRtUmF4X3VTQk5Oc2JidEVKVnUteDA1dXdrYlNsVW9kREpsSHc/zlib.7z' - set WXWIN=C:\rpcs3\wxWidgets - - set OPENALDIR=C:\rpcs3\OpenAL + - set OPENALDIR=C:\rpcs3\3rdparty\OpenAL - set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;C:\wxWidgets;%PATH% - set COMMIT_SHA=%APPVEYOR_REPO_COMMIT:~0,8% diff --git a/rpcs3-tests/rpcs3-tests.vcxproj b/rpcs3-tests/rpcs3-tests.vcxproj index 0d2984b164..8adb984884 100644 --- a/rpcs3-tests/rpcs3-tests.vcxproj +++ b/rpcs3-tests/rpcs3-tests.vcxproj @@ -55,7 +55,7 @@ true - $(VCInstallDir)UnitTest\lib;..\OpenAL\libs\Win64;..\ffmpeg\Windows\x86_64\lib;%(AdditionalLibraryDirectories) + $(VCInstallDir)UnitTest\lib;..\3rdparty\OpenAL\libs\Win64;..\3rdparty\ffmpeg\Windows\x86_64\lib;%(AdditionalLibraryDirectories) diff --git a/rpcs3/CMakeLists.txt b/rpcs3/CMakeLists.txt index 9eff077212..455349faad 100644 --- a/rpcs3/CMakeLists.txt +++ b/rpcs3/CMakeLists.txt @@ -106,23 +106,26 @@ ${wxWidgets_INCLUDE_DIRS} ${ZLIB_INCLUDE_DIR} ${OPENAL_INCLUDE_DIR} ${LLVM_INCLUDE_DIRS} -"${RPCS3_SRC_DIR}/../ffmpeg/${PLATFORM_ARCH}/include" +"${RPCS3_SRC_DIR}/../3rdparty/ffmpeg/${PLATFORM_ARCH}/include" "${RPCS3_SRC_DIR}" "${RPCS3_SRC_DIR}/Loader" "${RPCS3_SRC_DIR}/Crypto" "${RPCS3_SRC_DIR}/.." "${RPCS3_SRC_DIR}/../asmjit/src/asmjit" -"${RPCS3_SRC_DIR}/../glm" -"${RPCS3_SRC_DIR}/../libpng" -"${RPCS3_SRC_DIR}/../GSL/include" +"${RPCS3_SRC_DIR}/../3rdparty/glm" +"${RPCS3_SRC_DIR}/../3rdparty/libpng" +"${RPCS3_SRC_DIR}/../3rdparty/GSL/include" "${RPCS3_SRC_DIR}/../rsx_program_decompiler/rsx_decompiler" "${RPCS3_SRC_DIR}/../rsx_program_decompiler/shader_code" "${RPCS3_SRC_DIR}/../Vulkan/Vulkan-LoaderAndValidationLayers/include" "${RPCS3_SRC_DIR}/../Vulkan/glslang/glslang/Public" +# Includes 3rdparty stuff that isn't included yet +"${RPCS3_SRC_DIR}/../3rdparty/GL" +"${RPCS3_SRC_DIR}/../3rdparty/stblib" ) if(WIN32) - include_directories(BEFORE "${RPCS3_SRC_DIR}/../minidx9/Include") - include_directories(BEFORE "${RPCS3_SRC_DIR}/../minidx12/Include") + include_directories(BEFORE "${RPCS3_SRC_DIR}/../3rdparty/minidx9/Include") + include_directories(BEFORE "${RPCS3_SRC_DIR}/../3rdparty/minidx12/Include") endif() if(NOT LLVM_FOUND) @@ -146,11 +149,11 @@ endif() link_directories( "${RPCS3_SRC_DIR}/../asmjit/" -"${RPCS3_SRC_DIR}/../minidx12/" +"${RPCS3_SRC_DIR}/../3rdparty/minidx12/" ) if(MSVC OR NOT WIN32) - link_directories("${RPCS3_SRC_DIR}/../ffmpeg/${PLATFORM_ARCH}/lib") + link_directories("${RPCS3_SRC_DIR}/../3rdparty/ffmpeg/${PLATFORM_ARCH}/lib") endif() get_property(dirs DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY INCLUDE_DIRECTORIES) diff --git a/rpcs3/Emu/Audio/AL/OpenALThread.h b/rpcs3/Emu/Audio/AL/OpenALThread.h index a02a100435..3e793e6617 100644 --- a/rpcs3/Emu/Audio/AL/OpenALThread.h +++ b/rpcs3/Emu/Audio/AL/OpenALThread.h @@ -1,7 +1,7 @@ #pragma once #include "Emu/Audio/AudioThread.h" -#include "OpenAL/include/alext.h" +#include "3rdparty/OpenAL/include/alext.h" class OpenALThread : public AudioThread { diff --git a/rpcs3/Emu/Audio/XAudio2/XAudio2Thread.h b/rpcs3/Emu/Audio/XAudio2/XAudio2Thread.h index 5ef541754e..32fd600893 100644 --- a/rpcs3/Emu/Audio/XAudio2/XAudio2Thread.h +++ b/rpcs3/Emu/Audio/XAudio2/XAudio2Thread.h @@ -6,7 +6,7 @@ #pragma push_macro("_WIN32_WINNT") #undef _WIN32_WINNT #define _WIN32_WINNT 0x0601 // This is to be sure that correct (2.7) header is included -#include "minidx9/Include/XAudio2.h" // XAudio2 2.8 available only on Win8+, used XAudio2 2.7 from dxsdk +#include "3rdparty/minidx9/Include/XAudio2.h" // XAudio2 2.8 available only on Win8+, used XAudio2 2.7 from dxsdk #pragma pop_macro("_WIN32_WINNT") class XAudio2Thread : public AudioThread diff --git a/rpcs3/Emu/RSX/D3D12/D3D12RenderTargetSets.cpp b/rpcs3/Emu/RSX/D3D12/D3D12RenderTargetSets.cpp index 033dee93b5..36e271cf1e 100644 --- a/rpcs3/Emu/RSX/D3D12/D3D12RenderTargetSets.cpp +++ b/rpcs3/Emu/RSX/D3D12/D3D12RenderTargetSets.cpp @@ -9,7 +9,7 @@ #include "Emu/RSX/GSRender.h" #include "../rsx_methods.h" -#include "D3D12.h" +#include #include "D3D12GSRender.h" #include "D3D12Formats.h" diff --git a/rpcs3/Emu/RSX/D3D12/d3dx12.h b/rpcs3/Emu/RSX/D3D12/d3dx12.h index 2e79a23489..5b1f1ccaa9 100644 --- a/rpcs3/Emu/RSX/D3D12/d3dx12.h +++ b/rpcs3/Emu/RSX/D3D12/d3dx12.h @@ -10,7 +10,7 @@ #ifndef __D3DX12_H__ #define __D3DX12_H__ -#include "d3d12.h" +#include #if defined( __cplusplus ) diff --git a/rpcs3/Emu/RSX/GL/OpenGL.h b/rpcs3/Emu/RSX/GL/OpenGL.h index 9f1ca10845..3c51a2792a 100644 --- a/rpcs3/Emu/RSX/GL/OpenGL.h +++ b/rpcs3/Emu/RSX/GL/OpenGL.h @@ -6,7 +6,7 @@ #ifdef _WIN32 #include #include "GL/gl.h" -#include "GL/glext.h" +#include typedef BOOL (WINAPI* PFNWGLSWAPINTERVALEXTPROC) (int interval); #define OPENGL_PROC(p, n) extern p gl##n diff --git a/rpcs3/Emu/SysCalls/Modules/cellFont.cpp b/rpcs3/Emu/SysCalls/Modules/cellFont.cpp index 396cddeaf1..adae60dc89 100644 --- a/rpcs3/Emu/SysCalls/Modules/cellFont.cpp +++ b/rpcs3/Emu/SysCalls/Modules/cellFont.cpp @@ -4,7 +4,7 @@ // Defines STB_TRUETYPE_IMPLEMENTATION *once* before including stb_truetype.h (as noted in stb_truetype.h's comments) #define STB_TRUETYPE_IMPLEMENTATION -#include "stblib/stb_truetype.h" +#include #include "Emu/FS/vfsFile.h" #include "cellFont.h" diff --git a/rpcs3/Emu/SysCalls/Modules/cellGifDec.cpp b/rpcs3/Emu/SysCalls/Modules/cellGifDec.cpp index 97aa40ae3c..4cef65232d 100644 --- a/rpcs3/Emu/SysCalls/Modules/cellGifDec.cpp +++ b/rpcs3/Emu/SysCalls/Modules/cellGifDec.cpp @@ -5,7 +5,7 @@ #include "Emu/SysCalls/Modules.h" // STB_IMAGE_IMPLEMENTATION is already defined in stb_image.cpp -#include "stblib/stb_image.h" +#include #include "Emu/FS/VFS.h" #include "Emu/FS/vfsFileBase.h" diff --git a/rpcs3/Emu/SysCalls/Modules/cellJpgDec.cpp b/rpcs3/Emu/SysCalls/Modules/cellJpgDec.cpp index e2d235a19a..0c5ded73b9 100644 --- a/rpcs3/Emu/SysCalls/Modules/cellJpgDec.cpp +++ b/rpcs3/Emu/SysCalls/Modules/cellJpgDec.cpp @@ -5,7 +5,7 @@ #include "Emu/SysCalls/Modules.h" // STB_IMAGE_IMPLEMENTATION is already defined in stb_image.cpp -#include "stblib/stb_image.h" +#include #include "Emu/FS/VFS.h" #include "Emu/FS/vfsFileBase.h" diff --git a/rpcs3/OpenAL.vcxproj b/rpcs3/OpenAL.vcxproj index 3989b340ff..7dfff65312 100644 --- a/rpcs3/OpenAL.vcxproj +++ b/rpcs3/OpenAL.vcxproj @@ -64,7 +64,7 @@ - .\OpenAL\include;%(AdditionalIncludeDirectories) + .\3rdparty\OpenAL\include;%(AdditionalIncludeDirectories) diff --git a/rpcs3/XAudio.vcxproj b/rpcs3/XAudio.vcxproj index 93488ac8c0..5ecbcc26d9 100644 --- a/rpcs3/XAudio.vcxproj +++ b/rpcs3/XAudio.vcxproj @@ -63,7 +63,7 @@ - ..\minidx9\Include;%(AdditionalIncludeDirectories) + ..\3rdparty\minidx9\Include;%(AdditionalIncludeDirectories) diff --git a/rpcs3/emucore.vcxproj b/rpcs3/emucore.vcxproj index 982cdfe9d8..9d8a1f3e02 100644 --- a/rpcs3/emucore.vcxproj +++ b/rpcs3/emucore.vcxproj @@ -388,7 +388,7 @@ - + diff --git a/rpcs3/rpcs3.vcxproj b/rpcs3/rpcs3.vcxproj index 63b3a58304..3ed11fb7bc 100644 --- a/rpcs3/rpcs3.vcxproj +++ b/rpcs3/rpcs3.vcxproj @@ -91,14 +91,14 @@ false - ..\minidx9\Include;..\OpenAL\include;..\Vulkan\Vulkan-LoaderAndValidationLayers\include;..\Vulkan\glslang\glslang\Public;%(AdditionalIncludeDirectories) + ..\3rdparty\minidx9\Include;..\Vulkan\Vulkan-LoaderAndValidationLayers\include;..\Vulkan\glslang\glslang\Public;%(AdditionalIncludeDirectories) - ..\Vulkan\glslang-build\SPIRV\Debug;..\Vulkan\glslang-build\OGLCompilersDLL\Debug;..\Vulkan\glslang-build\glslang\OSDependent\Windows\Debug;..\Vulkan\Vulkan-build\loader\Debug;..\Vulkan\glslang-build\glslang\Debug;..\OpenAL\libs\Win64;%(AdditionalLibraryDirectories) - ..\Vulkan\glslang-build\SPIRV\Debug;..\Vulkan\glslang-build\OGLCompilersDLL\Debug;..\Vulkan\glslang-build\glslang\OSDependent\Windows\Debug;..\Vulkan\Vulkan-build\loader\Debug;..\Vulkan\glslang-build\glslang\Debug;..\OpenAL\libs\Win64;%(AdditionalLibraryDirectories) - ..\Vulkan\glslang-build\SPIRV\Debug;..\Vulkan\glslang-build\OGLCompilersDLL\Debug;..\Vulkan\glslang-build\glslang\OSDependent\Windows\Debug;..\Vulkan\Vulkan-build\loader\Debug;..\Vulkan\glslang-build\glslang\Debug;..\OpenAL\libs\Win64;%(AdditionalLibraryDirectories) - ..\Vulkan\glslang-build\SPIRV\Release;..\Vulkan\glslang-build\OGLCompilersDLL\Release;..\Vulkan\glslang-build\glslang\OSDependent\Windows\Release;..\Vulkan\Vulkan-build\loader\Release;..\Vulkan\glslang-build\glslang\Release;..\OpenAL\libs\Win64;%(AdditionalLibraryDirectories) - ..\Vulkan\glslang-build\SPIRV\Release;..\Vulkan\glslang-build\OGLCompilersDLL\Release;..\Vulkan\glslang-build\glslang\OSDependent\Windows\Release;..\Vulkan\Vulkan-build\loader\Release;..\Vulkan\glslang-build\glslang\Release;..\OpenAL\libs\Win64;%(AdditionalLibraryDirectories) + ..\Vulkan\glslang-build\SPIRV\Debug;..\Vulkan\glslang-build\OGLCompilersDLL\Debug;..\Vulkan\glslang-build\glslang\OSDependent\Windows\Debug;..\Vulkan\Vulkan-build\loader\Debug;..\Vulkan\glslang-build\glslang\Debug;..\3rdparty\OpenAL\libs\Win64;%(AdditionalLibraryDirectories) + ..\Vulkan\glslang-build\SPIRV\Debug;..\Vulkan\glslang-build\OGLCompilersDLL\Debug;..\Vulkan\glslang-build\glslang\OSDependent\Windows\Debug;..\Vulkan\Vulkan-build\loader\Debug;..\Vulkan\glslang-build\glslang\Debug;..\3rdparty\OpenAL\libs\Win64;%(AdditionalLibraryDirectories) + ..\Vulkan\glslang-build\SPIRV\Debug;..\Vulkan\glslang-build\OGLCompilersDLL\Debug;..\Vulkan\glslang-build\glslang\OSDependent\Windows\Debug;..\Vulkan\Vulkan-build\loader\Debug;..\Vulkan\glslang-build\glslang\Debug;..\3rdparty\OpenAL\libs\Win64;%(AdditionalLibraryDirectories) + ..\Vulkan\glslang-build\SPIRV\Release;..\Vulkan\glslang-build\OGLCompilersDLL\Release;..\Vulkan\glslang-build\glslang\OSDependent\Windows\Release;..\Vulkan\Vulkan-build\loader\Release;..\Vulkan\glslang-build\glslang\Release;..\3rdparty\OpenAL\libs\Win64;%(AdditionalLibraryDirectories) + ..\Vulkan\glslang-build\SPIRV\Release;..\Vulkan\glslang-build\OGLCompilersDLL\Release;..\Vulkan\glslang-build\glslang\OSDependent\Windows\Release;..\Vulkan\Vulkan-build\loader\Release;..\Vulkan\glslang-build\glslang\Release;..\3rdparty\OpenAL\libs\Win64;%(AdditionalLibraryDirectories) VKstatic.1.lib;glslang.lib;OSDependent.lib;OGLCompiler.lib;SPIRV.lib;%(AdditionalDependencies) diff --git a/rpcs3/stb_image.cpp b/rpcs3/stb_image.cpp index 1d425d85f8..0cc9a34afe 100644 --- a/rpcs3/stb_image.cpp +++ b/rpcs3/stb_image.cpp @@ -1,4 +1,4 @@ #include "stdafx.h" // Defines STB_IMAGE_IMPLEMENTATION *once* for stb_image.h includes (Should this be placed somewhere else?) #define STB_IMAGE_IMPLEMENTATION -#include "stblib/stb_image.h" +#include diff --git a/rpcs3_default.props b/rpcs3_default.props index 3361d6d67c..b739149eb8 100644 --- a/rpcs3_default.props +++ b/rpcs3_default.props @@ -3,7 +3,7 @@ - .\;..\;..\asmjit\src\asmjit;..\wxWidgets\include\msvc;..\wxWidgets\include;..\wxWidgets\src\zlib;..\ffmpeg\WindowsInclude;..\ffmpeg\Windows\x86_64\Include;$(VC_IncludePath);$(WindowsSDK_IncludePath);$(UniversalCRT_IncludePath);..\minidx12\Include;..\glm;..\GSL\include;..\libpng + .\;..\;..\asmjit\src\asmjit;..\wxWidgets\include\msvc;..\wxWidgets\include;..\wxWidgets\src\zlib;..\3rdparty\ffmpeg\WindowsInclude;..\3rdparty\ffmpeg\Windows\x86_64\Include;$(VC_IncludePath);$(WindowsSDK_IncludePath);$(UniversalCRT_IncludePath);..\3rdparty\minidx12\Include;..\3rdparty\glm;..\3rdparty\GSL\include;..\3rdparty\libpng;..\3rdparty\GL;..\3rdparty\stblib;..\3rdparty\OpenAL\include $(SolutionDir)lib\$(Configuration)-$(Platform)\ $(SolutionDir)lib\$(Configuration)-$(Platform)\;$(UniversalCRT_LibraryPath_x64);$(LibraryPath) $(SolutionDir)tmp\$(ProjectName)-$(Configuration)-$(Platform)\ @@ -27,7 +27,7 @@ true odbc32.lib;odbccp32.lib;comctl32.lib;ws2_32.lib;shlwapi.lib;winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;rpcrt4.lib;libpng.lib;%(AdditionalDependencies) true - ..\wxWidgets\lib\vc_x64_lib;..\ffmpeg\Windows\x86_64\lib;..\lib\ + ..\wxWidgets\lib\vc_x64_lib;..\3rdparty\ffmpeg\Windows\x86_64\lib;..\lib\ 0x10000 false