All checks were successful
Build / Build project (push) Successful in 2m42s
11 lines
257 B
Bash
11 lines
257 B
Bash
# vcpkg initialization
|
|
|
|
# Disable vcpkg telemetry by default.
|
|
if [ -z "$VCPKG_DISABLE_METRICS" ]; then
|
|
export VCPKG_DISABLE_METRICS="1"
|
|
fi
|
|
|
|
# Export the correct vcpkg root directory.
|
|
if [ -z "$VCPKG_ROOT" ]; then
|
|
export VCPKG_ROOT="$HOME/.vcpkg"
|
|
fi
|