Skip to content

Qt Creator and other tools

Have a question about Qt Creator, our cross-platform IDE, or any of the other tools? Ask here!
7.6k Topics 35.5k Posts
  • Disable system (linux) "unresponsive app" blocking window when debugging?

    Solved
    2
    0 Votes
    2 Posts
    479 Views
    M
    Nevermind, this long-running terrible bug has been fixed. https://gitlab.gnome.org/GNOME/gnome-shell/issues/273 Solution is to upgrade gnome-shell, 3.32+ should be fine.
  • mac objective C++, @import not working?

    Solved
    5
    0 Votes
    5 Posts
    1k Views
    D
    buried in some obscure forum, apparently the correct method is for an objectiveC++ framework, you can't add the path this way: QMAKE_LFLAGS += -F$${DIR_PADDLE_FRAMEWORK} you have to add it this way: QMAKE_OBJECTIVE_CFLAGS += -F$${DIR_PADDLE_FRAMEWORK} Then it will somehow @import
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    46 Views
    No one has replied
  • QML file not updated on build

    Unsolved
    1
    0 Votes
    1 Posts
    417 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    4
    0 Votes
    4 Posts
    89 Views
  • Qt Test

    Unsolved
    2
    0 Votes
    2 Posts
    353 Views
    SGaistS
    Hi and welcome to devnet, You can follow Qt's pattern for that: use subdirs project types and have a test subdirs that implement all the testing you need.
  • lost all of my editor helpers...

    Solved
    13
    0 Votes
    13 Posts
    1k Views
    mzimmersM
    @aha_1980 a couple years ago, with considerable help from SGaist, I was able to configure and build Qt for the BeagleBone Black, and do cross builds and cross debugging. But that was a bit less formidable, as the BBB runs Linux, so the gdbserver was already supplied. I realize that Creator is a very small part of Qt-dom in the eyes of the Qt community, but it's still the best damn editor and debugger interface I've ever used. It has plenty of value as a stand-alone product.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • Using CI to build Android/iOS Qt app

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    H
    Check out Felgo Cloud Builds, a CI/CD service for Qt applications. You can connect your repository, build the application for iOS & Android, and download the binaries or upload them to the App Store & Google Play automatically.
  • Could not find the executable please specify one

    Solved
    3
    0 Votes
    3 Posts
    2k Views
    A
    @raven-worx thank you so match it works ^^
  • 0 Votes
    13 Posts
    4k Views
    O
    Reported here: https://bugreports.qt.io/browse/QTCREATORBUG-22335
  • .pro.user and version control

    Solved
    7
    0 Votes
    7 Posts
    2k Views
    G
    @aha_1980 OK thanks - I'll sort something from here
  • Hello World Crashed using MSVC 2015 as a compiler, Help please

    Solved
    9
    0 Votes
    9 Posts
    2k Views
    A
    @hskoglund said in Hello World Crashed using MSVC 2015 as a compiler, Help please: updating your Intel graphic Thank you so match it works
  • 0 Votes
    9 Posts
    2k Views
    J.HilkJ
    @aha_1980 well its not an easy tool to use. I'm currently fighting with it as well, my antivirus pushes it into quarantine because it may be a potential virus. Only happens with my own created tools not the QtCreator one. I'm still trying to figure that one out...
  • access remote repo from QtCreator

    Unsolved
    2
    0 Votes
    2 Posts
    897 Views
    mrjjM
    Hi Did you look over https://doc.qt.io/qtcreator/creator-vcs-git.html There is something with the SSH key you should take into account.
  • Cant get QDoc to work

    Unsolved
    3
    0 Votes
    3 Posts
    661 Views
    raven-worxR
    @GrahamLa backslash is considered as escape character, try using a slash instead. Also your imagedirs variable is incomplete also see this Maybe you also want to include the online or offline template: include($QTDIR/doc/global/qt-html-templates-offline.qdocconf) # or include($QTDIR/doc/global/qt-html-templates-online.qdocconf)
  • QtCreator detachable windows

    Unsolved
    1
    0 Votes
    1 Posts
    355 Views
    No one has replied
  • Qt Creator says "File not found" in issues pane when file exists

    Solved
    4
    0 Votes
    4 Posts
    6k Views
    S
    I fixed it by adding mpicxx and mpicc as new compilers in "Build and Run" and then setting the "error parser" to clang for both mpicxx and mpicc. Even though both are using GNU -- not Clang -- this seems to fix the issue.
  • [SOLVED] Upgrading to QtCreator 4.9.0 has broken my macOS Kit

    Solved
    2
    0 Votes
    2 Posts
    391 Views
    E
    Apparently it just wiped the compilers I was using, and wiped the Build profiles. Once I selected "Apple Clang (x86_64)" for both C and C++ Compiler, I just had to add and configure my Debug and Release builds and it seems to work now. Still, this seems like an issue worth looking at if more people have their build settings wiped upgrading from QtCreator 4.8.x to 4.9.0.
  • Qbs profile confusion!

    Unsolved
    7
    0 Votes
    7 Posts
    1k Views
    E
    @jsulm Thats why I resorted to using sudo earlier. Thanks for your reply Eamonn