first commit

This commit is contained in:
Stefan Hacker
2026-03-17 14:49:47 +01:00
commit 3b81c10646
178 changed files with 12912 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 &"