7 lines
251 B
Batchfile
7 lines
251 B
Batchfile
@echo off
|
|
set ARCH=%~1
|
|
set PATH=C:\mingw\7_1_x%ARCH%\bin;C:\Qt\qt487_win%ARCH%\bin;C:\cmake\bin
|
|
set Qt5_DIR=C:\Qt\qt591_win%ARCH%
|
|
mkdir ..\libs_build_win%ARCH%
|
|
cd ../libs_build_win%ARCH% && cmake_mgw ../libs && make install -j8 && cd ../libs && pause
|