2017-10-26 00:56:30 +03:00
|
|
|
if [ -z "${VSPATH}" ]; then
|
|
|
|
TOOLTOOL_DIR=${TOOLTOOL_DIR:-$topsrcdir}
|
2018-09-12 15:37:19 +03:00
|
|
|
VSPATH="$(cd ${TOOLTOOL_DIR} && pwd)/vs2017_15.6.6"
|
2017-10-26 00:56:30 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d "${VSPATH}" ]; then
|
|
|
|
VSWINPATH="$(cd ${VSPATH} && pwd -W)"
|
|
|
|
|
|
|
|
export WINDOWSSDKDIR="${VSWINPATH}/SDK"
|
|
|
|
export WIN32_REDIST_DIR="${VSPATH}/VC/redist/x86/Microsoft.VC141.CRT"
|
|
|
|
export WIN_UCRT_REDIST_DIR="${VSPATH}/SDK/Redist/ucrt/DLLs/x86"
|
2018-05-03 22:53:53 +03:00
|
|
|
export WIN_DIA_SDK_BIN_DIR="${VSPATH}/DIA SDK/bin"
|
2017-10-26 00:56:30 +03:00
|
|
|
|
2018-09-12 15:37:19 +03:00
|
|
|
export PATH="${VSPATH}/VC/bin/Hostx86/x86:${VSPATH}/VC/bin/Hostx64/x86:${VSPATH}/VC/bin/Hostx64/x64:${VSPATH}/SDK/bin/10.0.15063.0/x64:${WIN_DIA_SDK_BIN_DIR}:${PATH}"
|
2017-10-26 00:56:30 +03:00
|
|
|
export PATH="${VSPATH}/VC/redist/x86/Microsoft.VC141.CRT:${VSPATH}/SDK/Redist/ucrt/DLLs/x86:${PATH}"
|
|
|
|
|
2018-09-12 15:37:19 +03:00
|
|
|
export INCLUDE="${VSPATH}/VC/include:${VSPATH}/VC/atlmfc/include:${VSPATH}/SDK/Include/10.0.15063.0/ucrt:${VSPATH}/SDK/Include/10.0.15063.0/shared:${VSPATH}/SDK/Include/10.0.15063.0/um:${VSPATH}/SDK/Include/10.0.15063.0/winrt:${VSPATH}/DIA SDK/include"
|
|
|
|
export LIB="${VSPATH}/VC/lib/x86:${VSPATH}/VC/atlmfc/lib/x86:${VSPATH}/SDK/Lib/10.0.15063.0/ucrt/x86:${VSPATH}/SDK/Lib/10.0.15063.0/um/x86:${VSPATH}/DIA SDK/lib"
|
2017-12-14 19:20:33 +03:00
|
|
|
|
|
|
|
export WIN64_LINK="${VSPATH}/VC/bin/Hostx64/x64/link.exe"
|
2018-09-12 15:37:19 +03:00
|
|
|
export WIN64_LIB="${VSPATH}/VC/lib/x64:${VSPATH}/VC/atlmfc/lib/x64:${VSPATH}/SDK/Lib/10.0.15063.0/ucrt/x64:${VSPATH}/SDK/Lib/10.0.15063.0/um/x64:${VSPATH}/DIA SDK/lib/amd64"
|
2017-10-26 00:56:30 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
. $topsrcdir/build/mozconfig.vs-common
|
|
|
|
|
|
|
|
mk_export_correct_style WINDOWSSDKDIR
|
|
|
|
mk_export_correct_style WIN32_REDIST_DIR
|
|
|
|
mk_export_correct_style WIN_UCRT_REDIST_DIR
|
2018-05-03 22:53:53 +03:00
|
|
|
mk_export_correct_style WIN_DIA_SDK_BIN_DIR
|
2017-10-26 00:56:30 +03:00
|
|
|
mk_export_correct_style PATH
|
|
|
|
mk_export_correct_style INCLUDE
|
|
|
|
mk_export_correct_style LIB
|