Skip to content

Commit 904487a

Browse files
committed
Remove vcpkg.json files and revert to classic mode installation
Delete vcpkg.json manifest files from root, scripts, and attachments directories. Update Windows installation scripts to use classic mode with explicit package list instead of manifest mode. This reverts dependency management to vcpkg classic mode across the project.
1 parent 4b91358 commit 904487a

File tree

5 files changed

+4
-48
lines changed

5 files changed

+4
-48
lines changed

attachments/simple_engine/install_dependencies_windows.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ set VCPKG_BINARY_SOURCES=clear;files,%TEMP%\vcpkg-cache,readwrite
2424
:: Create cache directory if it doesn't exist
2525
if not exist %TEMP%\vcpkg-cache mkdir %TEMP%\vcpkg-cache
2626

27-
:: Install all dependencies at once using vcpkg with parallel installation
27+
:: Install all dependencies at once using vcpkg in classic mode
2828
echo Installing all dependencies...
29-
vcpkg install --triplet=x64-windows --x-manifest-root=%~dp0 --feature-flags=binarycaching,manifests --x-install-root=%VCPKG_INSTALLATION_ROOT%/installed
29+
vcpkg install glfw3 glm tinyobjloader stb tinygltf nlohmann-json ktx[vulkan] openal-soft --triplet=x64-windows
3030

3131
:: Remind about Vulkan SDK
3232
echo.

attachments/simple_engine/vcpkg.json

Lines changed: 0 additions & 18 deletions
This file was deleted.

scripts/install_dependencies_windows.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ set VCPKG_BINARY_SOURCES=clear;files,%TEMP%\vcpkg-cache,readwrite
2121
:: Create cache directory if it doesn't exist
2222
if not exist %TEMP%\vcpkg-cache mkdir %TEMP%\vcpkg-cache
2323

24-
:: Install all dependencies at once using vcpkg with parallel installation
24+
:: Install all dependencies at once using vcpkg in classic mode
2525
echo Installing all dependencies...
26-
vcpkg install --triplet=x64-windows --x-manifest-root=%~dp0\.. --feature-flags=binarycaching,manifests --x-install-root=%VCPKG_INSTALLATION_ROOT%/installed
26+
vcpkg install glfw3 glm tinyobjloader stb tinygltf nlohmann-json ktx[vulkan] openal-soft --triplet=x64-windows
2727

2828
:: Remind about Vulkan SDK
2929
echo.

scripts/vcpkg.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

vcpkg.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)