We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a879c0 commit 58bf64dCopy full SHA for 58bf64d
.github/workflows/Build.yml
@@ -49,9 +49,9 @@ jobs:
49
shell: cmd
50
run: |
51
:: Search for lrelease.exe and linguist.exe
52
- dir C:\*lrelease.exe /s /b
53
- dir C:\*linguist.exe /s /b
54
- echo.
+ ::dir C:\*lrelease.exe /s /b
+ ::dir C:\*linguist.exe /s /b
+ ::echo.
55
56
:: Remove previous cmake build folder
57
rmdir /s /q build >nul 2>nul
@@ -77,6 +77,11 @@ jobs:
77
echo Compilation and linking executables done
78
echo.
79
80
+ :: Copy translation tools
81
+ mkdir build\exe\Tools
82
+ copy /y C:\Qt\5.15.2\mingw81_64\bin\lrelease.exe build\exe\Tools
83
+ copy /y C:\Qt\5.15.2\mingw81_64\bin\linguist.exe build\exe\Tools
84
+
85
:: Add any file to "Logs" folder for the next shipping
86
mkdir build\exe\Logs >nul 2> nul
87
cd build\exe\Logs
0 commit comments