0

On Ubuntu Bionic, I've built PythonQt and the examples work as they should. How do I compile my own application using the build PythonQt I have?

newbie here, so step by step instructions would be greatly appreciated

Lukas Würzburger
  • 6,543
  • 7
  • 41
  • 75
Amir
  • 83
  • 1
  • 8

1 Answers1

1

Apparently the following is all that has to be done:

  • Download and build PythonQtx.x
  • in your apps ".pro" file, include the required ".prf" files from PythonQtx.x/build
  • qmake && make

  • [linux] LD_LIBRARY_PATH env variable should point to PythonQtx.x/lib when executing your compiled app
Amir
  • 83
  • 1
  • 8