qt qmake -tp vc to create visual studio project files

后端 未结 1 1315
抹茶落季
抹茶落季 2021-01-04 04:53

I am using QT Creater 1.0.0. and QT 4.5.0 LGPL license.

I want to develop an application in QT that will run on a windows mobile 6.0.

I have created a simple

相关标签:
1条回答
  • 2021-01-04 05:28

    Are you sure you're using qmake -tp vc? You mentioned it twice, but your output above shows you're using qmake -t vc. (note the -t instead of -tp)

    You either need to use:

    qmake -tp vc

    or

    qmake -t vcapp

    It could also be a bad QMAKESPEC environment variable.

    Try this:

    set QMAKESPEC=win32-msvc2008
    qmake -tp vc
    
    0 讨论(0)
提交回复
热议问题