Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QSimpleUpdater.pri is missing AuthenticateDialog files #47

Open
stefan-ebikes opened this issue Dec 6, 2024 · 1 comment
Open

QSimpleUpdater.pri is missing AuthenticateDialog files #47

stefan-ebikes opened this issue Dec 6, 2024 · 1 comment

Comments

@stefan-ebikes
Copy link

QSimpleUpdater.pri needs to include AuthenticateDialog.(cpp|h|ui) files in order to compile successfully. Suggested solution is below. Tested this with Qt6.8.1 on Linux, but I presume it is the same on other platforms.

--- a/QSimpleUpdater.pri
+++ b/QSimpleUpdater.pri
@@ -31,12 +31,17 @@ INCLUDEPATH += $$PWD/include
 SOURCES += \
     $$PWD/src/Updater.cpp \
     $$PWD/src/Downloader.cpp \
+    $$PWD/src/AuthenticateDialog.cpp \
     $$PWD/src/QSimpleUpdater.cpp
 
 HEADERS += \
     $$PWD/include/QSimpleUpdater.h \
     $$PWD/src/Updater.h \
+    $$PWD/src/AuthenticateDialog.h \
     $$PWD/src/Downloader.h
 
-FORMS += $$PWD/src/Downloader.ui
+FORMS += \
+    $$PWD/src/Downloader.ui \
+    $$PWD/src/AuthenticateDialog.ui
+
 RESOURCES += $$PWD/etc/resources/qsimpleupdater.qrc
@mohammadhasanzadeh
Copy link
Contributor

I have the same problem on Qt 5.15.2.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants