-
I have ran "install-deps.sh" in /ci (I delete the --config in install-deps.sh )
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Rest assured, I am not offended by your question, but took the liberty to move it over to the discussion page 😉 Since you removed the The build types that are used by the CI can be found here: spix/.github/workflows/build.yml Line 15 in d260b51 As you can see, there is Release and Debug . Try installing the dependencies again and this time, instead of removing --config run it with --config Debug . Also repeat the install steps for the dependencies.
There is also a pull request open with quite a few improvements to spix. Among them an update to the build documentation in the README which might be of help: |
Beta Was this translation helpful? Give feedback.
-
Thanks for asking my question.I finally finished building the examples. widget class="QMainWindow" name="MainWindow" I connect to 9000 port as the same in example,and try to click the button using the following python command.
The connecting was success and the mouseClick func seems to be called correctly with a response ' '.But nothing was happen in app,the text in textEdit wasn't been cleared.
The response was False.It seems that spix can't find the MainWIndow as well as the items in it. What did I do wrong? |
Beta Was this translation helpful? Give feedback.
Rest assured, I am not offended by your question, but took the liberty to move it over to the discussion page 😉
It looks like the build in qtcreator does not properly find AnyRPC and maybe some other dependencies.
Since you removed the
--config
option when building the dependencies, you probably only built the release version of them and are missing the debug version. When you then try to run the example in a debugger, qtcreator will try to link the example with the debug version of anyrpc, not find it and then show the errors you see.The build types that are used by the CI can be found here:
spix/.github/workflows/build.yml
Line 15 in d260b51