Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between *.pro and *.pri configuration files for qmake?

What should go into a *.pro file and what should go into a *.pri file?

share|improve this question

2 Answers

up vote 6 down vote accepted

A .pro file is what you would run QMake on. A .pri file is included by a .pro file. Other than that there is not much of a difference between the two.

Example usage could be if you have different builds which need different options. You could put shared information in the .pro, while deferring the options to various .pri files. A bit more information, although admittedly not much more, can be found here.

share|improve this answer
   
Before I do something bad.. there is other post that actually answers this one. See second answer. Should I delete this question then..? – Beginner Dec 2 '11 at 15:47
Thanks, me too. – Beginner Dec 2 '11 at 15:49

The format of the .pri files is exactly the same as the format of the .pro files. The main difference is one of intent; a .pro is what most people would expect to run qmake on directly, while a .pri is to be included by a .pro. When you instruct qmake to include another file, it just processes the commands in that file as if it were in the current file.

For Reference: *.pro vs *.pri

share|improve this answer
I actually saw this question and haven't noticed that second answer actually answers my question..:( – Beginner Dec 2 '11 at 15:41
2  
Yes. It is not necessary that all accepted answers are the final answers.. – AlphaMale Dec 2 '11 at 15:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.