Skip to content

3rd Party Software

Combining Qt with 3rd party libraries or components? Ask here!
1.1k Topics 5.5k Posts
  • Integrating zbar library

    Solved
    5
    0 Votes
    5 Posts
    834 Views
    B

    @JoeCFD I was able to find an answer to this question by doing this:

    find_package(PkgConfig REQUIRED)
    pkg_check_modules(ZBar REQUIRED IMPORTED_TARGET zbar)
    target_link_libraries(camera PUBLIC PkgConfig::ZBar)
    Since I anyway had pkg-config, I found that package and then zbar using that package and then linked it with the libraries.

  • Microsoft office Activex in qt designer

    Unsolved
    1
    0 Votes
    1 Posts
    217 Views
    No one has replied
  • Designer + OpenFrameworks (Need help setting up)

    Unsolved
    4
    0 Votes
    4 Posts
    507 Views
    SGaistS

    This thread on the OpenFrameworks forum might help.

  • HDF5 library and H5T

    Solved
    11
    0 Votes
    11 Posts
    1k Views
    N

    I found the problems:
    I forgot to include the libraries hdf5_hl
    hdf5_hl_cpp and hdf5_hl

    I had 2 versions of hdf5 installed: 12.2 and 14.0

    I had to uninstall 12.2.
    Now, it seems to work.

    Thanks to all.

  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    2 Posts
    383 Views
    K

    Was able to resolve it by adding LIBS += -lWindowsApp to *.pro file.

    Thread can be closed.

  • 0 Votes
    3 Posts
    673 Views
    D

    @SGaist Great Thank you this, I know that qt has its own MQTT module just I had already developed my code for MQTT using the mosquitto library before I knew I was going to be making a GUI using QT.

  • 0 Votes
    30 Posts
    5k Views
    O

    Fixed the issue.

    Turns out it was something with my laptop. I had gotten a secondary laptop that had the same environment, all Windows 10, downloaded the NIDAQmx software, and it connected to my Qt application perfectly fine. Very odd, unsure why this happened. I went about the installation process the same on both laptops.

    I hope nobody ever has to go through this issue again, but if you are, might want to try on a new laptop..Worked for me!

  • QT-Creator cant find ros2 packages

    Moved Unsolved
    2
    0 Votes
    2 Posts
    904 Views
    serkan_trS

    @Schloern
    To run ros packages, it is necessary to run the setup.bash file, for example, the setup.bash file should be run in the linux operating system.

    source /opt/ros/humble/setup.bash

    Start the QT Creator application in the terminal where you enter the setup.bash controls.

    step 1: Open terminal and enter "source /opt/ros/humble/setup.bash" command. Note: this is ros humble enter your own setup.bash file
    step 2: Open the QT Creator application from the terminal you included ros2
    step 3: If you want to work simultaneously with ROS, use threads.

  • Using hiredis and qt under Windows

    Unsolved
    2
    0 Votes
    2 Posts
    441 Views
    JonBJ

    @Neptunus
    I would expect these to be resolved by linking with kernel32.lib? Compare the linker lines generated from VS vs Creator? I don't know what Win32_Interop.lib is.

  • Using google protobuf with Qt Creator

    25
    0 Votes
    25 Posts
    18k Views
    V

    d60e951b-d2ad-4c5c-90bb-acd5587fc90e-image.png

    Hey Can you help me how to enable the MSVC compiler , I couldnt choose it.

  • export third party library in qbs project

    Unsolved
    1
    0 Votes
    1 Posts
    253 Views
    No one has replied
  • Unknown module(s) in QT: mqtt

    Unsolved
    13
    0 Votes
    13 Posts
    5k Views
    J

    I found out while replying to your response that I tried to install with qmake at location "C:/Qt/5.15.2/mingw81_64/bin". Instead I changed path variable of qmake to location "C:/Qt/5.15.2/android/lib". Now it compiled. Thank you for your help @SGaist . :D

  • 0 Votes
    4 Posts
    1k Views
    jsulmJ

    @CutiUser said in Error "symbol lookup error", "undefined symbol: SSLv3_client_method" using libQtNetwork.so.4:

    I guess I can't get openssl v1.1.1 and v1.1.0 to work together...

    That actually should work as version number is usually part of the library name or symbolic link.
    I think Qt4 never supported LibSSL 1.1

  • QT 5.12.11 add mng support

    Unsolved
    3
    0 Votes
    3 Posts
    574 Views
    L

    @jsulm said in QT 5.12.11 add mng support:

    Then please check the config.log file - probably something is missing (some library), so it is disabled.

    Thank you for your advice. Finally , I found the disable configuration is in "/src/imageformats/configure.json" , change the mng condition to features.imageformatplugin ,this works.

  • LNK2019 error: How to import and use ftd2xx.lib in QT app

    Unsolved
    8
    0 Votes
    8 Posts
    1k Views
    L

    @Chris-Kawa

    The doc also says that you need to define FTD2XX_STATIC if you're using the static library.

    I read this in the documentation, but tried to define into the source code. After you mentioned that I put

    DEFINES += FTD2XX_STATIC

    into the .pro file and that is works.

    Thank you all for help.

  • fontawesome for android device

    Unsolved
    2
    0 Votes
    2 Posts
    437 Views
    J

    Hello ramcho,

    I have the same problem, did you find a solution to solve it ?

  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Unable to compile Zint.pro

    Unsolved
    8
    0 Votes
    8 Posts
    934 Views
    JonBJ

    @ham13
    I have no idea. But if QtRptProject is up to Qt6 it looks like it is being regularly maintained, can't you get in touch with them or find a forum to discover what the status of Zint and Qt4 is all about?

  • 0 Votes
    3 Posts
    641 Views
    jrpatJ

    The relevant helper function is qt_mac_toQImage. Then QPixmap::fromImage can be used to get a QPixmap (example).