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.3k Posts
  • Any roadmap for Digia VS integration?

    4
    0 Votes
    4 Posts
    2k Views
    K
    I might be wrong, since I am not a Troll nor from Digia. However, I looks to me like the vsaddin is completely open source. It is supplied by Digia, but as far as I remember it is not part of the license. Therefore, I would assume that this is not on their roadmap at all IMHO. Probably you should address this question directly to Digia.
  • Running executable in QT Creator vs command line

    3
    0 Votes
    3 Posts
    2k Views
    T
    Thanks for the hint. The command line invocation uses env variables (LD_LIBRARY_PATH in my case) and app found a library in /usr/bin64. QT Creator has different settings and used different version of the library for linking.
  • Qt Creator 2.4.1 problem with fakevim

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Understanding Qt Creator and Qt Designer

    8
    0 Votes
    8 Posts
    4k Views
    M
    Glad that I could help!
  • Problem in debugging in windows?

    19
    0 Votes
    19 Posts
    10k Views
    C
    My problem with CDB using MSVC is solved. Turns out it's a pretty common problem, not at all related to Qt. It's caused by the existence of pre-existing Visual C++ redistributables. The installation works perfectly (in my case) after they are uninstalled. There are loads of pages that describe the many causes and solutions, but this one seems to be the clearest: http://notepad.patheticcockroach.com/1666/installing-visual-c-2010-and-windows-sdk-for-windows-7-offline-installer-and-installation-troubleshooting/ Hope this helps others who may be suffering from the same problem.
  • Qt VS Add-in default project template

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • How to get rid of update notifications? [bug filed]

    8
    0 Votes
    8 Posts
    3k Views
    V
    Here is the link to my bug report: https://bugreports.qt-project.org/browse/QTCREATORBUG-7147
  • How to create global #include from QtDesigner plugin

    2
    0 Votes
    2 Posts
    2k Views
    L
    It is unlikely to be changed, but if it isn't documented there is most probably no guarantee. But one should mention that <code>#include <...></code> and <code>#include "..."</code> behaves exactly the same, except that <code>"..."</code> looks in the current directory first, then in global directories. From the technical point of view there is no need to use the <code><...></code> notation just to include global files.
  • MSVC compiler in Qt Creator

    6
    0 Votes
    6 Posts
    8k Views
    K
    That's right, Scylla! Thanks a lot :)
  • Qt Creator and Gurobi

    6
    0 Votes
    6 Posts
    4k Views
    K
    Oh sorry guys for this very late reply. I found out that I tried to use 64-bit library with 32-bit compiler. Such a shame :D haha Thank you all very much for the replies. I do appreciate your help.
  • How to use project to another project

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    6 Posts
    5k Views
    G
    Hm, sorry, I never got my fingers on translating a QML file, so I cannot comment on that. Hopefully someone else can jump in here.
  • Unable to set breakpoints - unable to debug.

    2
    0 Votes
    2 Posts
    2k Views
    L
    You can try a "hard reset" by uninstalling the SDK, sensibly deleting % APPDATA %/Nokia, HKCU/Software/Nokia, HKCU/Software/Trolltech, HKLM/Software/Nokia, HKLM/Software/Trolltech and reinstalling the SDK and Qt Creator.
  • Is it possible to compile Qt-creator 2.5 with Qt5 with Designer enabled?

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Line level profiling

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Qt Creator and Qt 5

    3
    0 Votes
    3 Posts
    3k Views
    M
    Dropping MinGW mean the developers have to download VC++ express (at least), Qt Creator and Qt toolkit ... this is really exhausted process (as you know Microsoft prevents VC++ redistribution). PS I was so glad when Nokia created QtSDK all-in-one distro.
  • Writing Unit Tests with QtTest that access objects in another project

    5
    0 Votes
    5 Posts
    4k Views
    S
    Yes, it is a bit different from how integrated unit testing is with Java/.NET etc., but I do not think it is that unproductive. The primary target in each of my IDE sessions is the test project. I add code to my library project, add unit test code to the test project and just hit run. Since the library project is marked as a dependency of the test project, it automatically builds the library and then builds and executes the tests. The end result is you get most of the same type of integration as with Java/.NET
  • Tools to share monitor/keyboard/mouse across several

    4
    0 Votes
    4 Posts
    3k Views
    S
    1 screen, 1 keyboard, 1 mouse but several PC's in a different location.
  • Print build time

    3
    0 Votes
    3 Posts
    3k Views
    H
    Thanks, I forget about time, but this works outside Qt Creator. There is a another solution, which will work inside Qt Creator?
  • Curious issue with builds...

    7
    0 Votes
    7 Posts
    3k Views
    L
    qmake supports the inclusion of other project files using the include() statement. @ // common.pri SOURCES += commonFileA.cpp commonFileB.cpp commonFileC.cpp HEADERS += commonFileA.h commonFileB.h commonFileC.h // projectA.pro TEMPLATE = app include(common.pri) SOURCES += projectFileA.cpp HEADERS += projectFileA.h // projectB.pro TEMPLATE = app include(common.pri) SOURCES += projectFileB.cpp HEADERS += projectFileB.h @ You can even combine both projects to a single project using the subdirs template (given the .pro files are in projectA/projectA.pro and projectB/projectB.pro). @ // project.pro TEMPLATE = subdirs SUBDIRS = projectA projectB @