3

If I want to Build and run my application in Qt 5.0, nothing happens. I do not get any errors or something. Just nothing.

Some more information:
I have Windows 7 64-bit Qt Creator 2.8 (Based on Qt 5.0) I'm using a MSVC compiler

Here are some screenshot:
enter image description here
This is my current kit.
enter image description here

These are my compilers:
enter image description here

10
  • Have you tried using any other compilers, like MinGW? Commented Jan 5, 2014 at 13:49
  • 3
    That red ! means something. What does it say if you hover over that? Commented Jan 5, 2014 at 13:51
  • 1
    download.qt-project.org/official_releases/qt/5.2/5.2.0/… Commented Jan 5, 2014 at 13:59
  • 1
    Just google MinGW download and pick the one that meets your system requirements. However you will still need to add the compiler to QT which can be difficult. It's far easier to uninstall your current version of QT and re-download it with MinGW already connected up. Try qt-project.org/downloads and download "Qt 5.2.0 for Windows 32-bit (MinGW 4.8, OpenGL, 689 MB)" and you should be ready to go! Commented Jan 5, 2014 at 13:59
  • 2
    The kit include MSVC2010 in it's name, so Visual studio 2010 is needed (if you didn't renamed the kit), and you seem to have Visual studio 2012 it that correct? Anyway you need to install the correct Qt binaries for the C++ compiler you want to use, so check what Visual Studio do you have and install the corresponding Qt libraries or as other already said go with the MinGW version that one installs MinGW compiler too (when you install it make sure you check MinGW to be installed too) Commented Jan 5, 2014 at 14:34

1 Answer 1

4

You downloaded a MSVC2010 (i.e. MSVC 10) package of Qt and are trying to use it with MSVC2013 (i.e. MSVC 12, as detected by Qt).

That's of course not possible, you need a Qt build matching your compiler.

(If "of course" seems like an overstatement to you, ask Microsoft to keep binary compatibility across its compiler versions.)

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.