mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 19:38:48 +03:00
Windows CI for meson
This commit is contained in:
parent
2dda44316e
commit
02c1be496d
1 changed files with 13 additions and 5 deletions
|
@ -4,14 +4,22 @@ set PATH=%PATH:C:\cygwin64\bin;=%
|
||||||
set PATH=C:\ProgramData\chocolatey\bin;C:\Python310;%QT_DIR%\bin;%PATH%
|
set PATH=C:\ProgramData\chocolatey\bin;C:\Python310;%QT_DIR%\bin;%PATH%
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64
|
||||||
|
|
||||||
|
dir \
|
||||||
|
dir \Qt\
|
||||||
|
dir \Qt\5.15.2\
|
||||||
|
dir \Qt\5.15.2\msvc2019_64\
|
||||||
|
dir \Qt\5.15.2\msvc2019_64\bin
|
||||||
|
|
||||||
REM Build nheko
|
REM Build nheko
|
||||||
meson setup builddir
|
pip install --upgrade meson || exit /b
|
||||||
meson compile -C builddir
|
|
||||||
|
meson setup builddir || exit /b
|
||||||
|
meson compile -C builddir || exit /b
|
||||||
|
|
||||||
REM build qt-jdenticon
|
REM build qt-jdenticon
|
||||||
git clone https://github.com/Nheko-Reborn/qt-jdenticon.git
|
git clone https://github.com/Nheko-Reborn/qt-jdenticon.git || exit /b
|
||||||
cd qt-jdenticon
|
cd qt-jdenticon
|
||||||
qmake
|
qmake || exit /b
|
||||||
nmake
|
nmake || exit /b
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue