Closed moesay closed 3 years ago
Hello,
You'll need to add modules: 'qtscript'
to install-qt-action's parameters.
@jurplel
Hello, You'll need to add
modules: 'qtscript'
to install-qt-action's parameters.
That Solves the problem! Thanks
Sure thing, good luck!
I'm building a project that uses
QScriptEngine
that indeed needsQt::Script
to be linked. The Project. I have done it "locally" and everything is fine by just installingQt5
. Now I'm trying to set up a GitHub workflow but CMake is always failing.The CMake lines for finding and linking
QtScript
And the workflow code is
The workflow always fails with this error message
Why even after "presumably" installing
Qt 5.14.2
, the version i have locally, CMake can't find QScript? I have even tried to do- run: sudo apt-get install qtscript5-dev
but it still not working.