Gatality compiles on MacOS, Windows, and Linux. There are a few things you have to do in order to get it up and running:
- Download the code
- Install the dependencies (QT)
- Set up the CMake build system Things will generally run smoothly on MacOS and Linux, there are a few more steps on Windows.
You can start by git cloning the repository. A git client or the command line should work.
We use git submodules so that we can keep the code of some of our smaller dependencies in the project, and so that they can be compiled by our build system. After cloning the main project, clone the submodules with these commands:
git submodule init
git submodule update --init --recursive
If you have a client that can do this, or clone the repo with the submodules to begin with, that's fine too.
QT6 is required to build this project.
You can get the QT libraries from your package manager (brew on MacOS, distro dependent for Linux).
You can either build QT yourself, or download and install it with QT's installer.
Gatality only builds with MSVC on Windows. Make sure you install QT with MSVC and not MinGW. Unfortunately QT's installer does not add its directories to your environment variables, and CMake will not be able to find it, so you need to add it youself.
- You need to add your QT version's lib and bin directories for MSVC to your path environment variable. This guide will show you how.
- You also need to add a new environment variable called
QTDIR
which is the directory of your QT version and compiler.
For example:
- Your PATH should include
C:\Qt\6.8.1\msvc2022_64\bin
andC:\Qt\6.8.1\msvc2022_64\lib
- You should have an additional environment variable called
QTDIR
which isC:\Qt\6.8.1\msvc2022_64\
Either system or user environment variables will work.
You need the CMake build system and a C++ compiler to build this project.
You can get a compiler and CMake from your package manager. Any compiler should work.
You can install CMake using the CMake Binary Installer.
You also need the MSVC compiler and its CMake build tools. You can download the installer from Microsoft
In the Visual Studio installer, you probably want to do a custom installation, just make sure that you have C++ and CMake tools.
Even if you are going to have your IDE manage CMake, it's a good idea to try running it from the terminal first.
On Windows, Microsoft's build system will not be set as the CMake compiler by default. Either add MSBuild to your system variables, or use the "Developer Command Prompt for VS ..." application (which already has the variable set up) instead of your regular terminal.
- Configure -
cmake --preset debug
- Then Build -
cmake --build --preset debug
- Run the executable that was generated somewhere in the
build
directory. On Windows this is probably in theDebug
subdirectory.
You can also build for release with release
preset
Works for MacOS, Windows (MSVC), and Linux
TODO
If your error highlighting or IDE integration is showing red, make sure you have already compiled the project (to generate QT moc header files) and the compile_commands.json in the build folder is being recognized (default for most lsp)