Updated CI scripts 2.

This commit is contained in:
Gonzalo Exequiel Pedone 2021-02-21 00:57:46 -03:00
parent 4eb656e986
commit 731cefc584
No known key found for this signature in database
GPG key ID: B8B09E63E9B85BAF
2 changed files with 3 additions and 3 deletions

View file

@ -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 ^

View file

@ -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}