blob: f47434eb336fbaed34315b690e9af8f281d40fc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@ECHO OFF
PUSHD %~dp0\..
CALL vswhere.bat x86 store
IF ERRORLEVEL 1 (
ECHO ERROR! make-mingwlibs.bat: Something went wrong when calling vswhere.bat
POPD
EXIT /B 1
)
CALL make-mingwlibs.bat win10 %*
POPD
|