user63898
user63898

Reputation: 30895

how can i create visual studio solution file from nested Qt project using qmake

when i have nested Qt project with many *.pro files under the root project i run script ( perl script ) that run recursively with the command

qmake -tp vc *.pro

but is there better way to do it just with qmake alone without scripts ?

Upvotes: 0

Views: 3752

Answers (1)

rubenvb
rubenvb

Reputation: 76539

I am sure

qmake -r -tp vc mainprojectfile.pro

should do the trick. See the great and extensive documentation. It's all there.

Upvotes: 6

Related Questions