onurozcelik
onurozcelik

Reputation: 1214

Qt Creator build error with under Windows

I want to port a multiple project MSVS solution to Qt Creator. I created the .pro files for the projects and added them to Qt Creator. When I build the projects I always get the same error shown below. By the way I am using Qt 4.6.3 (VS 2008). What may cause this? enter image description here

Upvotes: 0

Views: 348

Answers (2)

dB8
dB8

Reputation: 174

You could change your make step from jom to nmake (found in the projects window) to see if it gives you a more detailed error.

It also seems that you do not have any source code files in your project, just your library's header files.

Upvotes: 0

karlphillip
karlphillip

Reputation: 93468

It's difficult to say what the problem is frmo the jom.exe output.

  • It might be that the command it's trying to execute on the console is too long (MS reference).

  • A similar problem was reported here, although is not clear if it was solved.

I suggest you upgrade to a more recent version of Qt and try again (sorry).

Upvotes: 1

Related Questions