23 lines
567 B
Batchfile
Executable File
23 lines
567 B
Batchfile
Executable File
@echo off
|
|
|
|
setlocal
|
|
|
|
SET INTERMAX_HOME=%1
|
|
SET IMX_NAME=%2
|
|
SET IMX_BIT=%3
|
|
|
|
if "%IMX_BIT%" == "32" (
|
|
set "path=%INTERMAX_HOME%\lib\imx\DLL\x86;"
|
|
)
|
|
|
|
|
|
if not exist %INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe (
|
|
copy %INTERMAX_HOME%\lib\imx\%IMX_NAME%_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe
|
|
copy %INTERMAX_HOME%\lib\imx\imxtxn_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\imxtxn.exe
|
|
copy %INTERMAX_HOME%\lib\imx\imxuts_win_%IMX_BIT%.exe %INTERMAX_HOME%\lib\imx\imxuts.exe
|
|
)
|
|
|
|
%INTERMAX_HOME%\lib\imx\%IMX_NAME%.exe -D
|
|
|
|
exit 0
|