mirror of
https://github.com/minetest/minetest.git
synced 2025-06-28 06:11:44 +02:00
Auto-detect level of parallelism
This commit is contained in:
@ -5,4 +5,4 @@ cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=Debug \
|
||||
-DRUN_IN_PLACE=TRUE -DENABLE_GETTEXT=TRUE \
|
||||
-DBUILD_SERVER=TRUE ${CMAKE_FLAGS} ..
|
||||
make -j2
|
||||
make -j$(($(nproc) + 1))
|
||||
|
@ -8,6 +8,6 @@ cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr/local \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DENABLE_TESTING=0
|
||||
make -j2
|
||||
make -j$(nproc)
|
||||
sudo make install
|
||||
|
||||
|
Reference in New Issue
Block a user