7 lines
121 B
Bash
7 lines
121 B
Bash
|
mkdir custom/build
|
||
|
cd custom/build
|
||
|
cmake ../.. -DCMAKE_BUILD_TYPE=Release
|
||
|
make -j$(($(nproc) - 2))
|
||
|
make install
|
||
|
cd ../..
|