Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. qmake-qt5
    Log in to post

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

      10
      0
      Votes
      10
      Posts
      547
      Views

      @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.
    • UNSOLVED Detect modified files during qmake
      General and Desktop • qt5.5 qmake qmake makefile qmake-qt5 system command • • onurA  

      3
      0
      Votes
      3
      Posts
      1066
      Views

      @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!
    • UNSOLVED Using QMake to compile a Visual Studio project which uses QT5 & OpenCV libraries
      Mobile and Embedded • cmake visual studio qt 5.4.2 qmake-qt5 • • MarKS  

      2
      0
      Votes
      2
      Posts
      1836
      Views

      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
    • is using .qmake.cache file different from including a .pri file?
      General and Desktop • qmake project qmake-qt5 buildsystem qmake.cache • • markus.liebe  

      2
      0
      Votes
      2
      Posts
      1185
      Views

      Hi, Did you follow that wiki article ?