Fix Building Documentation
minecraft-pi-reborn/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2021-09-21 22:15:04 -04:00
parent 0a65c91d14
commit b7b130e675
1 changed files with 3 additions and 0 deletions

View File

@ -48,11 +48,13 @@ mkdir build && cd build
mkdir arm && cd arm mkdir arm && cd arm
cmake -DMCPI_BUILD_MODE=arm ../.. cmake -DMCPI_BUILD_MODE=arm ../..
make -j$(nproc) && sudo make install make -j$(nproc) && sudo make install
cd ../
# Build Native Components # Build Native Components
mkdir native && cd native mkdir native && cd native
cmake -DMCPI_BUILD_MODE=native ../.. cmake -DMCPI_BUILD_MODE=native ../..
make -j$(nproc) && sudo make install make -j$(nproc) && sudo make install
cd ../../
``` ```
## One-Step Build ## One-Step Build
@ -65,4 +67,5 @@ mkdir build && cd build
# Build # Build
cmake .. cmake ..
make -j$(nproc) && sudo make install make -j$(nproc) && sudo make install
cd ../
``` ```