22 lines
775 B
Batchfile
22 lines
775 B
Batchfile
@ECHO OFF
|
|
:: --------------------------------------------------------------------------------------------------------------------------------------
|
|
:: project: GarageCalc
|
|
:: summary: Update or create GarageCalc module file to be imported from Qrc-file
|
|
:: file: update_ts_files.cmd
|
|
:: date: version author
|
|
:: 2021-07-12 1 paul salajean
|
|
:: --------------------------------------------------------------------------------------------------------------------------------------
|
|
SET prev_dir=%cd%
|
|
|
|
CD ..
|
|
|
|
pyside2-rcc --verbose -o .\src\icons_rc.py .\img\icons.qrc
|
|
:: for embedded class "clsTableWidget"
|
|
pyside2-rcc --verbose -o .\src\clsTableWidget_icons_rc.py .\src\img\icons.qrc
|
|
|
|
|
|
:END
|
|
CD %prev_dir%
|
|
ECHO Done.
|
|
|
|
PAUSE
|