mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 23:17:29 +00:00
0fe32fa0d3
the soft_oal.dll was written with a dash which is clearly wrong
24 lines
567 B
Batchfile
24 lines
567 B
Batchfile
mkdir build
|
|
mkdir build\rpcs3
|
|
copy bin\rpcs3-*.exe build\rpcs3
|
|
copy bin\soft_oal.dll build\rpcs3
|
|
copy bin\make_fself.cmd build\rpcs3
|
|
|
|
mkdir build\rpcs3\dev_hdd1
|
|
xcopy /Y /e bin\dev_hdd1 build\rpcs3\dev_hdd1
|
|
|
|
mkdir build\rpcs3\dev_hdd0
|
|
xcopy /Y /e bin\dev_hdd0 build\rpcs3\dev_hdd0
|
|
|
|
mkdir build\rpcs3\dev_flash
|
|
xcopy /Y /e bin\dev_flash build\rpcs3\dev_flash
|
|
|
|
mkdir build\rpcs3\dev_usb000
|
|
xcopy /Y /e bin\dev_usb000 build\rpcs3\dev_usb000
|
|
|
|
for /f "delims=" %%a in ('git describe') do @set gitrev=%%a
|
|
|
|
cd build
|
|
7z a -mx9 ..\rpcs3-%gitrev%-windows-x86_64.7z rpcs3
|
|
cd ..
|