mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-29 16:47:28 +01:00
22 lines
550 B
Bash
22 lines
550 B
Bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
cd src
|
|
|
|
set -o errexit
|
|
set -o verbose
|
|
|
|
activate_venv
|
|
|
|
if [ "Windows_NT" = "$OS" ]; then
|
|
vcvars="$(vswhere -latest -property installationPath | tr '\\' '/' | dos2unix.exe)/VC/Auxiliary/Build/"
|
|
echo "call \"$vcvars/vcvarsall.bat\" amd64" > msvc.bat
|
|
for i in "${compile_env[@]}"; do
|
|
echo "set $i" >> msvc.bat
|
|
done
|
|
echo "ninja -f ${ninja_file} ${targets}" >> msvc.bat
|
|
cmd /C msvc.bat
|
|
else
|
|
eval ${compile_env} ninja -f ${ninja_file} ${targets}
|
|
fi
|