Added menu item "Help/Check for update" to ask the QtMaintenanceTool if an update is available and show a dialog to trigger the update from within the application.

This commit is contained in:
2025-11-01 10:56:50 +01:00
parent fc083f527a
commit a826dc2478
4 changed files with 6 additions and 2 deletions

2
ApplicationConfig.h.in Normal file
View File

@ -0,0 +1,2 @@
#define APPLICATION_NAME "${PROJECT_NAME}"
#define APPLICATION_VERSION "${PROJECT_VERSION}"

View File

@ -11,6 +11,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_subdirectory(libs/GenericCore)
set (CORE_LIB_DIR ${CMAKE_CURRENT_SOURCE_DIR}/libs/GenericCore)
configure_file(ApplicationConfig.h.in ApplicationConfig.h)
#Frontend applications
add_subdirectory(UIs/GenericWidgets)