mirror of
git://code.qt.io/qt/qt5.git
synced 2026-05-10 04:58:08 +08:00
These scripts are generic for both linux and macos, we may parameterize them and reuse on both platforms. Change-Id: Ia61cfbbf5c91e2135e38253c4a96605015d2d1b6 Reviewed-by: Alexey Edelev <semlanik@gmail.com>
15 lines
479 B
Bash
15 lines
479 B
Bash
#!/usr/bin/env bash
|
|
# Copyright (C) 2023 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
echo "Installing vcpkg ports"
|
|
echo "VCPKG_ROOT: ${VCPKG_ROOT}"
|
|
echo "ANDOID_NDK_HOME: ${ANDROID_NDK_HOME}"
|
|
|
|
# Installing common ports
|
|
BASEDIR=$(dirname "$0")
|
|
"$BASEDIR/../common/unix/install-vcpkg-ports.sh" x64-linux-qt
|
|
|
|
# Installing platform specific ports
|
|
"$BASEDIR/../common/linux/install-vcpkg-ports-android.sh"
|