Skip to content

Build: Build with Qt Creator

Lars Toenning edited this page Nov 25, 2023 · 5 revisions

Download prerequisites

  • Git
  • Qt5 (be sure to select "Qt Creator" in the component selection of the installer)
  • C/C++ compiler:
    • Windows: Microsoft Visual C++ compiler (included with Visual Studio Community; be sure to select C++ during installation)
    • macOS: Clang
    • Linux: GCC or Clang

Clone the git repo

git clone https://github.com/swift-project/pilotclient.git
git submodule update --init

Build

Open the CMakeLists.txt file located in the just cloned pilotclient folder with Qt Creator to load the project. Next, press Configure Project. This triggers CMake and creates all build files according to your toolchain.

That's it! You now have a working Qt Creator environment to build and execute the project.

Different launch targets can be selected here:

For more information on Qt Creator itself, see the Qt Creator Manual.

Clone this wiki locally