mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
DevContainer: Update path to vcpkg
This commit is contained in:
parent
f9df95af50
commit
7ae7b9b695
Notes:
github-actions[bot]
2024-11-08 19:01:33 +00:00
Author: https://github.com/ADKaster Commit: https://github.com/LadybirdBrowser/ladybird/commit/7ae7b9b695b Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2234
1 changed files with 4 additions and 4 deletions
|
@ -18,20 +18,20 @@ python3 ./Toolchain/BuildVcpkg.py
|
|||
|
||||
# Install the vcpkg.json in manifest mode from the root of the repo
|
||||
# Set the binary cache directory to the one we intend to use at container runtime
|
||||
export VCPKG_ROOT="${PWD}/Toolchain/Tarballs/vcpkg"
|
||||
export VCPKG_ROOT="${PWD}/Build/vcpkg"
|
||||
export VCPKG_BINARY_SOURCES="clear;files,${CACHE_DIR},readwrite"
|
||||
|
||||
# Check options to see which versions we should build
|
||||
if [ "${RELEASE_TRIPLET}" = "true" ]; then
|
||||
./Toolchain/Local/vcpkg/bin/vcpkg install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/release-triplets"
|
||||
"./${VCPKG_ROOT}/vcpkg" install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/release-triplets"
|
||||
fi
|
||||
|
||||
if [ "${DEBUG_TRIPLET}" = "true" ]; then
|
||||
./Toolchain/Local/vcpkg/bin/vcpkg install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/debug-triplets"
|
||||
"./${VCPKG_ROOT}/vcpkg" install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/debug-triplets"
|
||||
fi
|
||||
|
||||
if [ "${SANITIZER_TRIPLET}" = "true" ]; then
|
||||
./Toolchain/Local/vcpkg/bin/vcpkg install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/sanitizer-triplets"
|
||||
"./${VCPKG_ROOT}/vcpkg" install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/sanitizer-triplets"
|
||||
fi
|
||||
|
||||
# Clean up to reduce layer size
|
||||
|
|
Loading…
Reference in a new issue