12 lines
284 B
Batchfile
12 lines
284 B
Batchfile
@echo off
|
|
REM ---------------------------
|
|
set "QTVARS=E:\Qt\MSVC\4.7.1\bin\qtvars.bat"
|
|
REM ---------------------------
|
|
call "%QTVARS%"
|
|
REM ---------------------------
|
|
for %%f in (*.ts) do (
|
|
lrelease.exe %%f -qm ..\..\res\localization\%%~nf.qm
|
|
)
|
|
REM ---------------------------
|
|
pause
|