Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
df8f35e
Switch from vcpkg manifest mode to classic mode and disable manifest …
gpx1000 Mar 2, 2026
be6848e
Refactor FindKTX.cmake to fix FetchContent fallback and improve cross…
gpx1000 Mar 2, 2026
46cc682
Update vcpkg.json to restrict dependencies to Windows platform and fi…
gpx1000 Mar 2, 2026
b4074b0
Add openal-soft dependency and fix vcpkg classic mode installation
gpx1000 Mar 2, 2026
de6f1ad
Add vcpkg CONFIG mode support to Find modules and prioritize custom C…
gpx1000 Mar 2, 2026
67a28b9
Restrict vcpkg dependencies to Windows platform and improve CMake mod…
gpx1000 Mar 2, 2026
b5ce380
Explicitly specify MODULE mode for all find_package calls to prioriti…
gpx1000 Mar 3, 2026
5112502
Revert "Explicitly specify MODULE mode for all find_package calls to …
gpx1000 Mar 3, 2026
bf882ab
Revert "Restrict vcpkg dependencies to Windows platform and improve C…
gpx1000 Mar 3, 2026
06757f3
Revert "Add vcpkg CONFIG mode support to Find modules and prioritize …
gpx1000 Mar 3, 2026
701121f
Revert "Add openal-soft dependency and fix vcpkg classic mode install…
gpx1000 Mar 3, 2026
ca5c1c3
Revert "Update vcpkg.json to restrict dependencies to Windows platfor…
gpx1000 Mar 3, 2026
6e9f0f0
Revert "Refactor FindKTX.cmake to fix FetchContent fallback and impro…
gpx1000 Mar 3, 2026
4b91358
Revert "Switch from vcpkg manifest mode to classic mode and disable m…
gpx1000 Mar 3, 2026
904487a
Remove vcpkg.json files and revert to classic mode installation
gpx1000 Mar 3, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions attachments/simple_engine/install_dependencies_windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
18 changes: 0 additions & 18 deletions attachments/simple_engine/vcpkg.json

This file was deleted.

4 changes: 2 additions & 2 deletions scripts/install_dependencies_windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
13 changes: 0 additions & 13 deletions scripts/vcpkg.json

This file was deleted.

13 changes: 0 additions & 13 deletions vcpkg.json

This file was deleted.

Loading