mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 22:17:45 +08:00
Pick-to: 6.1 Change-Id: I90e028409f606a703fd9b567a221f3f946f11d61 Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
21 lines
522 B
Bash
Executable File
21 lines
522 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# shellcheck source=../unix/SetEnvVar.sh
|
|
source "${BASH_SOURCE%/*}/../unix/SetEnvVar.sh"
|
|
|
|
# This script will install Conan
|
|
# Note! Python3 is required for Conan installation
|
|
|
|
os="$1"
|
|
|
|
# Install Conan to Python user install directory (typically ~./local/)
|
|
pip3 install conan --user
|
|
|
|
SetEnvVar "CONAN_REVISIONS_ENABLED" "1"
|
|
|
|
if [ "$os" == "linux" ]; then
|
|
SetEnvVar "PATH" "/home/qt/.local/bin:\$PATH"
|
|
elif [ "$os" == "macos" ]; then
|
|
SetEnvVar "PATH" "/Users/qt/Library/Python/3.7/bin:\$PATH"
|
|
fi
|