KIT!
d2bef31648
Merged logic to read cards from a local file from CrazyRedMachine's redboard repository. Added the ability to select a card from the files by pressing and holding a number on the keypad. Bumped version
13 lines
454 B
Batchfile
13 lines
454 B
Batchfile
@echo off
|
|
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\aimeio.dll bin\aimeio.dll
|
|
copy build64\src\aimetest.exe bin\aimetest.exe |