Can't find ui_webauthdialog.h
-
Hello,
I am trying to fix https://aur.archlinux.org/packages/openfortivpn-webview-qt
qtwebengine reference a ui_webauthdialog.h in it's examples… but I can't find it
Any clue ?
-
Hello,
I am trying to fix https://aur.archlinux.org/packages/openfortivpn-webview-qt
qtwebengine reference a ui_webauthdialog.h in it's examples… but I can't find it
Any clue ?
@tchernomax
ui_....hfiles are generated from....uiDesigner source files, which are created in that designer. When you run a build the project, the rules should invoke the.uifile compiler, nameduic, and that reads from a.uiin your source directory and outputs a correspondingui_....hfile in the build output directory. Which you then#includeinto your corresponding source file for the designer file. So run a build and see if it gets generated. If not your build rules are not set up correctly, and depends on whether you are using qmake or cmake. -
@JonB thanks !
I had more problems, which I managed to fixed.
My PKGBUILD was using
qmake6, but that doesn't generateui_webauthdialog.h.
I tried qmake, but :Project ERROR: Unknown module(s) in QT: webenginewidgetsI tried
cmake, it doesn't worked at first … but it was due to the facts my qt6* packages where all in the same version (I think the archlinux repository weren't fully sync the last time I did an update)
→ after fixing my qt6* package,cmakeworked.(note: I retried
qmake6andqmakewith good qt6* packages → they still fails)So in short : I needed to use
cmake ., thenmake(as stated in the README.md).Thanks for your help
-
T tchernomax has marked this topic as solved