Updated CI scripts 2.
This commit is contained in:
parent
4eb656e986
commit
731cefc584
2 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ rem Installing various utilities
|
|||
choco install -y jfrog-cli
|
||||
|
||||
if "%CMAKE_GENERATOR%" == "MSYS Makefiles" (
|
||||
set Path=C:\msys64\usr\bin;%Path%
|
||||
set Path=C:\msys64\usr\bin;"%Path%"
|
||||
pacman -Syy
|
||||
pacman --noconfirm --needed -S ^
|
||||
cmake ^
|
||||
|
|
|
@ -34,7 +34,7 @@ echo "Building x64 virtual camera driver"
|
|||
echo
|
||||
mkdir build-x64
|
||||
cd build-x64
|
||||
/usr/x86_64-w64-mingw32/bin/cmake ..
|
||||
x86_64-w64-mingw32-cmake ..
|
||||
cmake --build .
|
||||
cd ..
|
||||
echo
|
||||
|
@ -42,7 +42,7 @@ echo "Building x86 virtual camera driver"
|
|||
echo
|
||||
mkdir build-x86
|
||||
cd build-x86
|
||||
/usr/i686-w64-mingw32/bin/cmake ..
|
||||
i686-w64-mingw32-cmake ..
|
||||
cmake --build .
|
||||
EOF
|
||||
chmod +x ${BUILDSCRIPT}
|
||||
|
|
Loading…
Reference in a new issue