From 1eb287aabfecb43bcb119ea498466ffb67af0534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Vanda=C3=ABle?= Date: Mon, 14 Sep 2026 11:11:46 +0200 Subject: [PATCH] Add instructions to install/uninstall Dolphin --- Building-for-Linux.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 710e23a..80a7f7e 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -500,6 +500,20 @@ cmake --preset ninja-release-x64 -DCMAKE_C_COMPILER=clang-18 -DCMAKE_CXX_COMPILE You may then proceed with the clone instructions in the [Cloning](https://github.com/dolphin-emu/dolphin/wiki/Cloning) guide and build instructions in the [Building With CMake](https://github.com/dolphin-emu/dolphin/wiki/Building-with-CMake) guide. +### Installing Dolphin + +You can install Dolphin to your system by running the following command from the source directory: + +```sh +sudo cmake --install build/release/x64/ +``` + +To uninstall Dolphin, run the following command instead: + +```sh +sudo xargs rm -rf < build/release/x64/install_manifest.txt +``` + ### Distributable .deb Package Following the instructions from [the PR where this feature was implemented](https://github.com/dolphin-emu/dolphin/pull/10170): @@ -508,7 +522,7 @@ Following the instructions from [the PR where this feature was implemented](http sudo apt install dpkg-dev file cmake --preset ninja-release-x64 -DCPACK_PACKAGE_CONTACT="Your Name Here" # You're responsible for what you distribute. cmake --build --preset ninja-build-release-x64 -cd build/x64/ +cd build/release/x64/ cpack -G DEB ```