Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any page with complete *.pro file syntax?

Tags:

syntax

qt

project

I've googled for a while for this and failed to find something that in my opinion should be the first google result... Does anyone know of a page or other resourse with complete (and I mean it) syntax of the Qt project (*.pro) file? All I can find now is random examples on multiples pages, nothing solid.

like image 201
NPS Avatar asked May 26 '13 18:05

NPS


People also ask

What is a .pro file C++?

A PRO file is a website or mobile application mockup created by Adobe Proto, a discontinued Adobe Touch app. It contains one or more webpage or mobile app UI layouts, each of which may include interactive elements. PRO files support CSS, WebKit, and jQuery technologies.

What is qmake file?

QMake is a build system that generates Makefiles for GNU Make or project build files for Microsoft Visual Studio. It is part of the Qt software framework by Trolltech. While it is commonly used to construct Qt-based software, any project can benefit from it.

Where is .pro file in Qt?

In the Qt Creator application, choose menu File->Open File or Project, navigate to the project folder and choose the . pro file to open.


1 Answers

*.pro files are actually qmake project files. There are a lot of information about qmake:

  • qmake Advanced Usage
  • qmake reference
  • Variable reference
  • Function reference
like image 89
Pavel Strakhov Avatar answered Sep 27 '22 19:09

Pavel Strakhov