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 ccdbde1 commit 688b677Copy full SHA for 688b677
2 files changed
.github/workflows/CI-windows.yml
@@ -55,12 +55,7 @@ jobs:
55
56
- name: Build GUI release
57
run: |
58
- cmake --build build --config Debug --target cppcheck-gui || exit /b !errorlevel!
59
-
60
- # TODO: is there a way to do this in CMake
61
- - name: Deploy GUI
62
- run: |
63
- windeployqt --no-translations build\bin\Debug || exit /b !errorlevel!
+ cmake --build build --config Debug --target windeployqt || exit /b !errorlevel!
64
65
# TODO: run GUI tests
66
gui/CMakeLists.txt
@@ -71,6 +71,7 @@ CheckOptions:
71
add_dependencies(cppcheck-gui online-help.qhc)
72
endif()
73
74
+ # TODO: is there a better way to do this?
75
if(MSVC)
76
message(STATUS "CMAKE_BINARY_DIR=${CMAKE_BINARY_DIR}")
77
add_custom_target(windeployqt ${WINDEPLOYQT} --no-translations ${CMAKE_BINARY_DIR})
0 commit comments