Skip to content

Latest commit

 

History

History
33 lines (18 loc) · 1.22 KB

qt_creator.md

File metadata and controls

33 lines (18 loc) · 1.22 KB

Qt Creator IDE

Qt Creator can be used to launch build, edit, run and debug C++ and QML code.

Install Qt Creator from the repository of your distribution or with an installer from the Qt website.

To launch QtCreator in English on Linux:

$ LANGUAGE=C qtcreator

Opening and configuring the project

Open the root CMakeLists.txt with QtCreator and select the Qt installation that you want to target and click Configure Project.

Watch the General Messages log window for CMake errors.

Enabling parallel build

Go to Projects -> openage -> Build & Run -> Build -> Build Steps -> Build -> Details, and add -j4 to the Tool arguments.

Run & Debug

  1. To set the correct executable, first go to Projects -> openage -> Build & Run -> Run page.
  2. In the Run configuration combo-box select Custom Executable and set Executable to <path-to-openage-src>/run.
  3. Set Working directory to <path-to-openage-src>.

<path-to-openage-src> is the directory where the sources of the openage are (the directory of the root CMakeLists.txt file).

The <path-to-openage-src>/run binary has no executable bit set when first built, set it manually with chmod.