davidkomer
davidkomer

Reputation: 3078

Target x86 instead of x64?

Using QtCreator with visual studio 2013 x64 kit (which I think contains compilers for both 32 bit and 64 bit)

How can I tell it to specifically target 32 bit instead of 64 bit?

Upvotes: 0

Views: 1709

Answers (1)

Robert
Robert

Reputation: 807

The Visual Studio 2013 x64 kit only contains a configuration for one compiler. You can check out the kit details in the settings dialog (Build and Run category -> Kits tab). When you select the Visual Studio 2013 x64 kit, you can see the configured compiler in the bottom (it most probably is Microsoft Visual C++ Compiler 12.0 (x64)). For a x86 build you will need to setup an appropriate Visual Studio 2013 x86 kit containing the respective x86 compiler, debugger and Qt version and select this kit for the project.

Upvotes: 2

Related Questions