16 lines
385 B
Batchfile
16 lines
385 B
Batchfile
|
set OUTPUTPATH=..\bin\
|
||
|
set RELEASEPATH=%OUTPUTPATH%release
|
||
|
set DEBUGPATH=%OUTPUTPATH%debug
|
||
|
|
||
|
if exist %RELEASEPATH% (
|
||
|
xcopy 3th\release %RELEASEPATH% /Y /I /E
|
||
|
xcopy DataPlatform\*.ico %RELEASEPATH% /Y /I
|
||
|
windeployqt.exe %RELEASEPATH%\DPS.exe
|
||
|
)
|
||
|
|
||
|
if exist %DEBUGPATH% (
|
||
|
xcopy 3th\debug %DEBUGPATH% /Y /I /E
|
||
|
xcopy DataPlatform\*.ico %DEBUGPATH% /Y /I
|
||
|
windeployqt.exe %DEBUGPATH%\DPS.exe
|
||
|
)
|