first commit

This commit is contained in:
Stefan Hacker
2026-03-22 21:25:09 +01:00
commit a5a9d86205
180 changed files with 13006 additions and 0 deletions
Executable
+19
View File
@@ -0,0 +1,19 @@
#!/bin/bash
set -e
cd "$(dirname "$0")"
# Create build directory
mkdir -p build
cd build
# Configure
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
# Build
make -j$(nproc)
echo ""
echo "Build successful!"
echo "To install, run: cd build && sudo make install"
echo "Then restart Dolphin: dolphin --replace &"