mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-04 10:45:50 +00:00
* Remove hand-rolled unity sources * unity unavailable for cmake 3.15 and earlier * remove deprecated target configure option
52 lines
1.2 KiB
Bash
Executable File
52 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -exu
|
|
|
|
: ${TRAVIS_BUILD_DIR:=""}
|
|
: ${VCPKG_DIR:=".vcpkg"}
|
|
export VCPKG_ROOT=${VCPKG_DIR}
|
|
: ${VCPKG_DEFAULT_TRIPLET:="x64-windows-static"}
|
|
|
|
export VCPKG_DEFAULT_TRIPLET
|
|
|
|
EXE="vcpkg"
|
|
if [[ -z ${COMSPEC:-} ]]; then
|
|
EXE="${EXE}.exe"
|
|
fi
|
|
|
|
if [[ -d "${VCPKG_DIR}" && -x "${VCPKG_DIR}/${EXE}" && -d "${VCPKG_DIR}/installed" ]] ; then
|
|
echo "Using cached vcpkg at ${VCPKG_DIR}"
|
|
${VCPKG_DIR}/${EXE} list
|
|
else
|
|
if [[ -d "${VCPKG_DIR}" ]] ; then
|
|
rm -rf "${VCPKG_DIR}"
|
|
fi
|
|
git clone --branch 2019.12 https://github.com/Microsoft/vcpkg.git ${VCPKG_DIR}
|
|
pushd ${VCPKG_DIR}
|
|
BSARGS=()
|
|
if [[ "$(uname)" == "Darwin" ]] ; then
|
|
BSARGS+=(--allowAppleClang)
|
|
fi
|
|
if [[ -z ${COMSPEC:-} ]]; then
|
|
chmod +x ./bootstrap-vcpkg.sh
|
|
time ./bootstrap-vcpkg.sh "${BSARGS[@]}"
|
|
else
|
|
time ./bootstrap-vcpkg.bat
|
|
fi
|
|
popd
|
|
fi
|
|
|
|
# TODO: bring boost in this way as well ?
|
|
# NOTE: can pin specific ports to a commit/version like this:
|
|
# git checkout <SOME COMMIT HASH> ports/boost
|
|
if [ $# -eq 0 ]; then
|
|
echo "No extra packages specified..."
|
|
PKGS=()
|
|
else
|
|
PKGS=( "$@" )
|
|
fi
|
|
for LIB in "${PKGS[@]}"; do
|
|
time ${VCPKG_DIR}/${EXE} --clean-after-build install ${LIB}
|
|
done
|
|
|
|
|