From 4448adffacb1dc7d71aaeabce4f3f7efe9a7398c Mon Sep 17 00:00:00 2001 From: RyzenDew <84041391+RyzenDew@users.noreply.github.com> Date: Wed, 24 Aug 2022 12:06:09 -0300 Subject: [PATCH] Added Arch Deps Updated linux Build instructions with Arch deps --- BUILD.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/BUILD.md b/BUILD.md index 2fd6dbef..a87b4620 100644 --- a/BUILD.md +++ b/BUILD.md @@ -31,4 +31,14 @@ For ubuntu and most derivatives: 6) `cmake .. -DCMAKE_BUILD_TYPE=release -DCMAKE_C_COMPILER=/usr/bin/clang-12 -DCMAKE_CXX_COMPILER=/usr/bin/clang++-12 -G Ninja -DCMAKE_MAKE_PROGRAM=/usr/bin/ninja` 8) `ninja` +For Arch and most derivatives: + +1) Make sure vulkansdk is installed and the VULKAN_SDK environment variable is set correctly. +2) `sudo pacman -S --needed gtk3 libsecret libgcrypt systemd-libs freeglut nasm` +3) Run `git clone --recursive https://github.com/cemu-project/Cemu` +4) `cd Cemu` +5) `mkdir build && cd build` +6) `cmake .. -DCMAKE_BUILD_TYPE=release -DCMAKE_C_COMPILER=/usr/bin/clang-12 -DCMAKE_CXX_COMPILER=/usr/bin/clang++-12 -G Ninja -DCMAKE_MAKE_PROGRAM=/usr/bin/ninja` +8) `ninja` + Build instructions for other distributions will be added in the future!