mirror of
https://github.com/ISpillMyDrink/OpenSuperClone.git
synced 2026-09-17 07:45:33 +00:00
9 lines
177 B
Bash
Executable File
9 lines
177 B
Bash
Executable File
mkdir build
|
|
|
|
# Build for Release and install to /usr/local/
|
|
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local/
|
|
|
|
cd build
|
|
make
|
|
sudo make install
|