-
-
Notifications
You must be signed in to change notification settings - Fork 120
Building
Pegasus is a C++ program that uses the Qt framework. To build it run on your OS or device, you'll need a C++11 supporting compiler (g++ 4.6 or better), Qt 5.8 (version is important!) for your platform, and at least the following Qt components:
- QML module
- Qt Quick 2 module
- Multimedia module (might be called as MultimediaQuick)
- Svg module
- Gamepad module
Depending on your platform, these libs may or may not be available for your OS, or they may be outdated; see below for the platform notes. Qt also provides a graphical IDE called Qt Creator, which you can use if you wish, but it's not a requirement.
On many Linux distros, such as Debian (Ubuntu, Mint, ...) the Qt libraries are outdated, and the versions available in the repositories may be several years old (as a trade-off between stability and access to the latest software). Unless you're using a "bleeding edge" distribution (eg. Arch), it is recommended to use the official release available from the website of Qt (select open source). You'll have to install Desktop GCC and Gamepad from Qt 5.8, and optionally Qt Creator from under Tools.
If you're using Arch, you can get Qt from AUR; here's the relevant wiki page.
See the Qt Creator how to.
- Create a build directory somewhere, and
cd
into it - Call
qmake
, the configuration tool of Qt:/path/to/qmake path/to/project [options]
.- If you have multiple Qt versions installed, make sure you call the right
qmake
. If you've installed using the official release from the Qt site, you can find it in[qt-installdir]/Qt5/[version]/gcc_64/bin
(you can add it to your$PATH
if you want, but it's not necessary). - You can also change some configuration options, which you can find here.
- If you have multiple Qt versions installed, make sure you call the right
- Call
make
- [optional] Call
make install
On Windows, you can use the official Qt installer, which you can get from here (select open source). Select Qt 5.8 during the installation, and one of the compilers you'll use for the building/development: either Microsoft Visual Studio (MSVC) or the open source MinGW tools. You'll also need Gamepad (under Qt 5.8), and Qt Creator (from Tools).
Alternatively, if you're using MSYS2, you can find a setup guide here.
After installation, follow the Qt Creator guide.
You can use the official Qt installer from here (select open source), and it is also available from Homebrew (qt5
). Generally, you can follow the Linux/X11 guide. Xcode is also supported by Qt.
You'll likely need to build Qt manually for your platform (but check your repositories first, just in case). You can find a guide for it here.
After that, you can follow the Linux/X11 guide to cross compile Pegasus on your desktop PC, then transfer the runtime binary to your device.
You can set optional parameters to qmake
(the Qt configuration tool) by appending KEY=VALUE
pairs to its command line call. If you're using Qt Creator, you can find these settings on the Projects -> Build settings tab, where you can modify the Additional arguments option (see here).
You can use the following parameters:
Option | Description |
---|---|
INSTALLDIR |
The general installation directory used by make install . Defaults to /opt/pegasus-frontend on Linux and C:\pegasus-frontend on Windows. You can fine tune the installation directory of some components by other options. |
INSTALL_BINDIR |
The installation directory of the runtime binary ("exe"). Defaults to INSTALLDIR . |
INSTALL_DATADIR |
The installation directory of the data files, eg. default themes. Defaults to INSTALLDIR . |
INSTALL_ICONDIR |
[Linux only] The installation directory of the icon file. Defaults to INSTALLDIR (to make it portable), /usr/share/pixmaps is recommended if you want to install Pegasus system-wide. |
INSTALL_DESKTOPDIR |
[Linux only] The installation directory of the desktop entry. Defaults to INSTALLDIR (to make it portable), /usr/share/applications is recommended if you want to install Pegasus system-wide. |
-
Open Qt Creator
-
Open the project file (
pegasus.pro
) in Qt Creator -
Qt Creator will ask you which Qt setup ("kit") you want to use (in case you've installed multiple versions), and where you want to place the generated files (see Details). If everything's OK, click Configure Project.
-
In the bottom left corner, on the sidebar of Qt Creator, you can find 4 buttons:
- with the button that looks like a desktop monitor, you can change the build type (optimized Release build or development-friendly but slower Debug build)
- the green arrow will build and run the program
- the green arrow with a bug will also open several debug toolbars
- the hammer will build the project but won't run it
-
Change the build type to Release (see above), and press the green arrow to build and run the project.
Want to contribute? Open a pull request in the wiki repository, or click here for more details.