rpcs3/package.bat
Peter Tissen dd382b2afc add files to allow for packaging on teamcity
add initial appveyor script

add submodule update before build

add msbuild cmd

remove msbuild cmd

make script runnable locally

add solution without wxwdigets

add initial appveyor script

add submodule update before build

add msbuild cmd

remove msbuild cmd

add packaging step to appveyor

add ftp upload test

use msbuild explicitly

doesn't seem to work otherwise

temporarily remove deploy script

temporarily remove build script

remove non-essential stuff

add back some stuff

set artifact path

update artifact stuff

try to add back deploy

add build step again, *sigh*

add some more build settings

add build sript style build again

download wxwidgets instead of building

remove quite flag for debugging

add cert igonre to download

dont redundantly add folder

use a seperate solution without wxwidgets dependencies

only use the rpcs3 7z as artifact

to avoid re-packaging wxwidgets, also comment out deployment, since I don't have acccess to the main account to add secure strings

Conflicts:
	package.bat
2014-07-09 17:18:23 +02:00

24 lines
555 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 /e bin\dev_hdd1 build\rpcs3\dev_hdd1
mkdir build\rpcs3\dev_hdd0
xcopy /e bin\dev_hdd0 build\rpcs3\dev_hdd0
mkdir build\rpcs3\dev_flash
xcopy /e bin\dev_flash build\rpcs3\dev_flash
mkdir build\rpcs3\dev_usb000
xcopy /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 ..