first commit
This commit is contained in:
Executable
+19
@@ -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 &"
|
||||
Reference in New Issue
Block a user