reactos/reactos/installwine.bat
Steven Edwards a7afd50a26 typo - fix install of regression tests.
svn path=/trunk/; revision=5105
2003-07-13 05:42:31 +00:00

94 lines
4 KiB
Batchfile

@echo off
REM
REM created by sedwards 11/11/01
REM
if "%1" == "" goto NoParameter
set WINE_INSTALL=%1
goto Install
:NoParameter
set ROS_INSTALL=c:\reactos
set WINE_INSTALL=%ROS_INSTALL%\system32
set WINE_APP_INSTALL=%ROS_INSTALL%\bin
set WINE_TESTS_INSTALL=%ROS_INSTALL%\test
:Install
echo Installing libwine and wine_unicode to %WINE_INSTALL%
copy ..\wine\libs\wine\libwine.dll %WINE_INSTALL%
copy ..\wine\libs\unicode\wine_unicode.dll %WINE_INSTALL%
echo Installing dlls to %WINE_INSTALL%
@echo off
copy ..\wine\dlls\comctl32\comctl32.dll %WINE_INSTALL%
copy ..\wine\dlls\commdlg\comdlg32.dll %WINE_INSTALL%
copy ..\wine\dlls\ddraw\ddraw.dll %WINE_INSTALL%
copy ..\wine\dlls\dinput\dinput.dll %WINE_INSTALL%
copy ..\wine\dlls\dplay\dplay.dll %WINE_INSTALL%
copy ..\wine\dlls\dplayx\dplayx.dll %WINE_INSTALL%
copy ..\wine\dlls\mapi32\mapi32.dll %WINE_INSTALL%
copy ..\wine\dlls\mpr\mpr.dll %WINE_INSTALL%
copy ..\wine\dlls\netapi32\netapi32.dll %WINE_INSTALL%
copy ..\wine\dlls\odbc32\odbc32.dll %WINE_INSTALL%
copy ..\wine\dlls\ole32\ole32.dll %WINE_INSTALL%
copy ..\wine\dlls\oleaut32\oleaut32.dll %WINE_INSTALL%
copy ..\wine\dlls\olecli\olecli32.dll %WINE_INSTALL%
copy ..\wine\dlls\oledlg\oledlg.dll %WINE_INSTALL%
copy ..\wine\dlls\olepro32\olepro32.dll %WINE_INSTALL%
copy ..\wine\dlls\olesvr\olesvr32.dll %WINE_INSTALL%
copy ..\wine\dlls\psapi\psapi.dll %WINE_INSTALL%
copy ..\wine\dlls\richedit\riched32.dll %WINE_INSTALL%
copy ..\wine\dlls\rpcrt4\rpcrt4.dll %WINE_INSTALL%
copy ..\wine\dlls\serialui\serialui.dll %WINE_INSTALL%
copy ..\wine\dlls\shdocvw\shdocvw.dll %WINE_INSTALL%
copy ..\wine\dlls\shell32\shell32.dll %WINE_INSTALL%
copy ..\wine\dlls\shfolder\shfolder.dll %WINE_INSTALL%
copy ..\wine\dlls\shlwapi\shlwapi.dll %WINE_INSTALL%
copy ..\wine\dlls\tapi32\tapi32.dll %WINE_INSTALL%
copy ..\wine\dlls\urlmon\urlmon.dll %WINE_INSTALL%
REM copy ..\wine\dlls\version\version.dll %WINE_INSTALL%
copy ..\wine\dlls\wintrust\wintrust.dll %WINE_INSTALL%
copy ..\wine\dlls\winspool\winspool.drv %WINE_INSTALL%
REM
echo Installing winelib programs to %WINE_APP_INSTALL%
REM
copy ..\wine\programs\clock\winclock.exe %WINE_APP_INSTALL%
copy ..\wine\programs\cmdlgtst\cmdlgtst.exe %WINE_APP_INSTALL%
copy ..\wine\programs\control\control.exe %WINE_APP_INSTALL%
copy ..\wine\programs\notepad\notepad.exe %WINE_APP_INSTALL%
copy ..\wine\programs\progman\progman.exe %WINE_APP_INSTALL%
copy ..\wine\programs\uninstaller\uninstaller.exe %WINE_APP_INSTALL%
copy ..\wine\programs\view\view.exe %WINE_APP_INSTALL%
copy ..\wine\programs\wcmd\wcmd.exe %WINE_APP_INSTALL%
copy ..\wine\programs\winefile\winefile.exe %WINE_APP_INSTALL%
copy ..\wine\programs\winemine\winmine.exe %WINE_APP_INSTALL%
copy ..\wine\programs\winver\winver.exe %WINE_APP_INSTALL%
REM
echo Installing wine tools to %WINE_APP_INSTALL%
REM
copy ..\wine\tools\winedump\winedump.exe %WINE_APP_INSTALL%
REM
echo Installing Regression tests to %WINE_TESTS_INSTALL%
REM
copy ..\wine\dlls\advapi32\tests\advapi32_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\comctl32\tests\comctl32_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\dsound\tests\dsound_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\gdi\tests\gdi32_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\kernel\tests\kernel32_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\msvcrt\tests\msvcrt_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\netapi\tests\netapi_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\ntdll\tests\ntdll_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\oleaut32\tests\oleaut32_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\shlwapi\tests\shlwapi_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\urlmon\tests\urlmon_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\user32\tests\user32_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\wininet\tests\wininet_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\winmm\tests\winmm_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\winsock\tests\ws_2_32_test.exe %WINE_TESTS_INSTALL%
copy ..\wine\dlls\winspool\tests\winspool_test.exe %WINE_TESTS_INSTALL%
REM
pause