Advertisement
Guest User

Untitled

a guest
Mar 20th, 2023
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. mkdir newfolder
  2. cd newfolder
  3.  
  4. git clone https://github.com/minetest/irrlicht.git
  5. cd irrlicht
  6. cmake . -DBUILD_SHARED_LIBS=OFF -B build
  7. make -C build -j$(nproc)
  8. cd ..
  9.  
  10. git clone -b stable-5 --depth 1 https://github.com/minetest/minetest.git
  11. cd minetest
  12. git clone -b stable-5 --depth 1 https://github.com/minetest/minetest_game.git games/minetest_game
  13. cmake -S . -B build -DENABLE_GETTEXT=1 -DENABLE_SPATIAL=ON -DENABLE_FREETYPE=1 -DBUILD_CLIENT=0 -DBUILD_SERVER=1 -DENABLE_SYSTEM_GMP=ON -DENABLE_CURL=ON -DENABLE_POSTGRESQL=ON -DENABLE_CURSES=ON -DENABLE_LUAJIT=ON -DCMAKE_BUILD_TYPE=Release -DIRRLICHTMT_BUILD_DIR=/path/to/irrlicht/build/ -DVERSION_EXTRA=yl -DRUN_IN_PLACE=TRUE
  14. make -C build -j$(nproc)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement