From 64b7c88b62dc9284ca4857d72595d5335141614d Mon Sep 17 00:00:00 2001 From: Luke Date: Mon, 26 Jul 2021 23:41:29 -0700 Subject: [PATCH] Adding in QT build params for Linux Distros for whom it may concern. --- Building-for-Linux.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Building-for-Linux.md b/Building-for-Linux.md index ac5ea72..4d98d4f 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -38,16 +38,20 @@ Dependencies are listed here as commands that can be copied/pasted. Of course, t - Arch / Manjaro: - `sudo pacman -Syu --needed base-devel boost catch2 cmake ffmpeg fmt git glslang libzip lz4 mbedtls ninja nlohmann-json openssl opus python-pip python2 qt5 sdl2 zlib zstd` - `python3 -m pip install --user conan` + - Building with QT Web Engine needs to be specified when running Cmake with the param `-DCMAKE_CXX_FLAGS="-I/usr/include/qt/QtWebEngineWidgets"` with qt5-webengine installed. - GCC 10 or later is required. - Ubuntu / Linux Mint / Debian: - `sudo apt-get install autoconf cmake g++-10 gcc-10 git glslang-tools libasound2 libboost-context-dev libglu1-mesa-dev libhidapi-dev libpulse-dev libtool libudev-dev libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-render-util0 libxcb-xinerama0 libxcb-xkb1 libxext-dev libxkbcommon-x11-0 mesa-common-dev nasm ninja-build python3 python3-pip qtbase5-dev qtbase5-private-dev qtwebengine5-dev` - `pip3 install --user conan` - Ubuntu 20.04, Linux Mint 20, or Debian Bullseye or later is required. + - Users need to manually specify building with QT Web Engine enabled. This is done using the parameter `-DYUZU_USE_QT_WEB_ENGINE=ON` when running CMake. - Users need to manually specify building with GCC 10. This can be done by adding the parameters `-DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10` when running CMake. i.e. ``` cmake .. -GNinja -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10 ``` + - Users need to manually specify building with QT Web Engine enabled. This is done using the parameter `-DYUZU_USE_QT_WEB_ENGINE=ON` when running CMake. + - Fedora: - `sudo dnf install alsa-lib-devel autoconf cmake gcc gcc-c++ git glslang hidapi-devel libXext-devel libtool libusbx-devel nasm pulseaudio-libs-devel python3 python3-pip qt5-linguist qt5-qtbase-devel qt5-qtbase-private-devel qt5-qtwebengine-devel` - `pip install --user conan`