From 959c3633bbeb08cb8ace0e4bf6ed9366562fe11d Mon Sep 17 00:00:00 2001 From: Sri Sham Haran Date: Mon, 5 Sep 2022 14:40:04 +0800 Subject: [PATCH] Dependencies.bat --- .gitignore | 2 ++ Dependencies.bat | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 Dependencies.bat diff --git a/.gitignore b/.gitignore index dfcfd56f..6eec57c4 100644 --- a/.gitignore +++ b/.gitignore @@ -348,3 +348,5 @@ MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ + +[Dd]ependencies/ diff --git a/Dependencies.bat b/Dependencies.bat new file mode 100644 index 00000000..5d40a11b --- /dev/null +++ b/Dependencies.bat @@ -0,0 +1,26 @@ +rmdir "Dependencies/VMA" /S /Q +git clone https://github.com/SHADE-DP/VulkanMemoryAllocator.git "Dependencies/VMA" + +rmdir "Dependencies/imgui" /S /Q +git clone https://github.com/SHADE-DP/imgui.git "Dependencies/imgui" + +rmdir "Dependencies/imguizmo" /S /Q +git clone https://github.com/SHADE-DP/ImGuizmo.git "Dependencies/imguizmo" + +rmdir "Dependencies/imnodes" /S /Q +git clone https://github.com/SHADE-DP/imnodes.git "Dependencies/imnodes" + +rmdir "Dependencies/tracy" /S /Q +git clone https://github.com/SHADE-DP/tracy.git "Dependencies/tracy" + +rmdir "Dependencies/spdlog" /S /Q +git clone https://github.com/SHADE-DP/spdlog.git "Dependencies/spdlog" + +rmdir "Dependencies/msdf" /S /Q +git clone --recurse-submodules https://github.com/SHADE-DP/msdf.git "Dependencies/msdf" + +rmdir "Dependencies/yamlcpp" /S /Q +git clone https://github.com/SHADE-DP/yaml-cpp.git "Dependencies/yamlcpp" + +rmdir "Dependencies/assimp" /S /Q +git clone https://github.com/SHADE-DP/assimp.git "Dependencies/assimp" \ No newline at end of file