Add instructions to install/uninstall Dolphin

Joshua Vandaële
2026-09-14 11:11:46 +02:00
parent 1294ede546
commit 1eb287aabf
+15 -1
@@ -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
```