mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 18:32:42 +01:00
13 lines
316 B
Batchfile
13 lines
316 B
Batchfile
@echo off
|
|
|
|
set config=Debug:Release:Release_dev
|
|
for %%c in (%config::= %) do (
|
|
cd %project_folder%\bin\%%c
|
|
|
|
copy %windows_sdl2_dir%\lib\x86\SDL2.dll SDL2.dll /Y
|
|
copy %windows_openal_dir%\bin\Win32\soft_oal.dll OpenAL32.dll /Y
|
|
|
|
xcopy /e /v %data_folder% .\ /Y
|
|
7z a "REDRIVER2_%%c.zip" ".\*"
|
|
)
|