Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. qmake-qt5

    Log in to post
    • All categories
    • M

      Unsolved Using qmake and it can't find qtquickcontrols2
      Tools • build qt raspberry pi 2 qmake-qt5 • • MLeone

      10
      0
      Votes
      10
      Posts
      1013
      Views

      sierdzio

      @MLeone said in Using qmake and it can't find qtquickcontrols2:

      @SGaist I create a folder inside the src folder, called qt-biuld. Then I do
      -prefix ../qtbase

      You are installing (make install) into qtbase, so it's not a clean build. Pick a different install target directory, like $PWD or something entirely different.

    • onurA

      Unsolved Detect modified files during qmake
      General and Desktop • qmake qmake makefile qmake-qt5 qt5.5 system command • • onurA

      3
      0
      Votes
      3
      Posts
      1140
      Views

      onurA

      @jsulm
      I need it for the rcc command. Whenever I run rcc in terminal, the binary output is re-generated, although the .qrc is the same.

      Is there a way to check it in qmake for example? Like a flag?
      Thanks in advance!

    • MarKS

      Unsolved Using QMake to compile a Visual Studio project which uses QT5 & OpenCV libraries
      Mobile and Embedded • qmake-qt5 cmake qt 5.4.2 visual studio • • MarKS

      2
      0
      Votes
      2
      Posts
      1885
      Views

      SGaist

      Hi,

      For qmake you can use something like:

      INCLUDEPATH += /path/to/OpenCV/include/folder LIBS += -L/path/to/OpenCV/lib/folder \ -lopencv_coreXXX \ -lopencv_imgprocXXX \ -lopencv_highguiXXX \ # next OpenCV libs you need

      Note that you can also setup your project on your Windows machine using either qmake or cmake and once it's building there, bring it over to your Linux target, and add the Linux specific pieces to link to OpenCV

    • M

      is using .qmake.cache file different from including a .pri file?
      General and Desktop • qmake qmake.cache qmake-qt5 buildsystem project • • markus.liebe

      2
      0
      Votes
      2
      Posts
      1242
      Views

      SGaist

      Hi,

      Did you follow that wiki article ?