mirror of
https://github.com/AkaiiKitsune/TAL_CardReader
synced 2024-11-13 21:47:36 +01:00
13 lines
457 B
Batchfile
13 lines
457 B
Batchfile
cd /d %~dp0
|
|
|
|
REM Edit this with the right path to vcvarsall.bat.
|
|
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
|
|
call "C:\Program Files\Microsoft Visual Studio\2022\Preview\VC\Auxiliary\Build\vcvarsall.bat" x64
|
|
meson setup build64 --buildtype=release
|
|
meson configure build64
|
|
ninja -C build64
|
|
|
|
mkdir bin
|
|
copy build64\src\cardreader.dll bin\cardreader.dll
|
|
copy dist\cardreader.toml bin\cardreader.toml
|
|
pause |