diff --git a/attachments/simple_engine/install_dependencies_windows.bat b/attachments/simple_engine/install_dependencies_windows.bat index 0fe383f4..590fd419 100644 --- a/attachments/simple_engine/install_dependencies_windows.bat +++ b/attachments/simple_engine/install_dependencies_windows.bat @@ -24,9 +24,9 @@ set VCPKG_BINARY_SOURCES=clear;files,%TEMP%\vcpkg-cache,readwrite :: Create cache directory if it doesn't exist if not exist %TEMP%\vcpkg-cache mkdir %TEMP%\vcpkg-cache -:: Install all dependencies at once using vcpkg with parallel installation +:: Install all dependencies at once using vcpkg in classic mode echo Installing all dependencies... -vcpkg install --triplet=x64-windows --x-manifest-root=%~dp0 --feature-flags=binarycaching,manifests --x-install-root=%VCPKG_INSTALLATION_ROOT%/installed +vcpkg install glfw3 glm tinyobjloader stb tinygltf nlohmann-json ktx[vulkan] openal-soft --triplet=x64-windows :: Remind about Vulkan SDK echo. diff --git a/attachments/simple_engine/vcpkg.json b/attachments/simple_engine/vcpkg.json deleted file mode 100644 index 0ec18a26..00000000 --- a/attachments/simple_engine/vcpkg.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "vulkan-game-engine-tutorial", - "version": "1.0.0", - "dependencies": [ - { - "name": "glfw3", - "platform": "!android" - }, - "glm", - "openal-soft", - { - "name": "ktx", - "features": [ "vulkan" ] - }, - "tinygltf", - "nlohmann-json" - ] -} diff --git a/scripts/install_dependencies_windows.bat b/scripts/install_dependencies_windows.bat index bd8ff37c..1f354d8e 100644 --- a/scripts/install_dependencies_windows.bat +++ b/scripts/install_dependencies_windows.bat @@ -21,9 +21,9 @@ set VCPKG_BINARY_SOURCES=clear;files,%TEMP%\vcpkg-cache,readwrite :: Create cache directory if it doesn't exist if not exist %TEMP%\vcpkg-cache mkdir %TEMP%\vcpkg-cache -:: Install all dependencies at once using vcpkg with parallel installation +:: Install all dependencies at once using vcpkg in classic mode echo Installing all dependencies... -vcpkg install --triplet=x64-windows --x-manifest-root=%~dp0\.. --feature-flags=binarycaching,manifests --x-install-root=%VCPKG_INSTALLATION_ROOT%/installed +vcpkg install glfw3 glm tinyobjloader stb tinygltf nlohmann-json ktx[vulkan] openal-soft --triplet=x64-windows :: Remind about Vulkan SDK echo. diff --git a/scripts/vcpkg.json b/scripts/vcpkg.json deleted file mode 100644 index 0a90e24d..00000000 --- a/scripts/vcpkg.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "vulkan-tutorial", - "version": "1.0.0", - "dependencies": [ - "glfw3", - "glm", - "tinyobjloader", - "stb", - "tinygltf", - "nlohmann-json", - "ktx" - ] -} diff --git a/vcpkg.json b/vcpkg.json deleted file mode 100644 index 0a90e24d..00000000 --- a/vcpkg.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "vulkan-tutorial", - "version": "1.0.0", - "dependencies": [ - "glfw3", - "glm", - "tinyobjloader", - "stb", - "tinygltf", - "nlohmann-json", - "ktx" - ] -}