Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 2.15 KB

CppQtCreator.md

File metadata and controls

43 lines (35 loc) · 2.15 KB

Qt Creator is an IDE that can be used on many platforms (for example Mac, Ubuntu and Windows), can be used to develop for multiple types of applications (for example console, mobile and web applications) on multiple platforms (for example Android, Nintendo DS and Symbian).

Qt Creator by default comes installed with the STL and Qt libraries.

Qt Creator works with multiple file types:

  • .pro: a Qt Creator project file: contains all info to build your project
  • .pri: a Qt Creator include project file: same as a .pro file, except that it is to be included by a .pro file
  • .qrc: a Qt Creator resources file
  • .h: a header file
  • .cpp: an implementation file
  • .ui: a Qt graphical user interface file

External links