s/make/cmake command
@@ -62,7 +62,7 @@ The `--recursive` option automatically clones the required Git submodules too.
|
|||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake ../
|
cmake ../
|
||||||
make
|
cmake --build . -- -j"$(nproc)"
|
||||||
sudo make install (optional)
|
sudo make install (optional)
|
||||||
```
|
```
|
||||||
- To enable HLE AAC Decoding, use `cmake .. -DENABLE_FFMPEG_AUDIO_DECODER=ON` instead.
|
- To enable HLE AAC Decoding, use `cmake .. -DENABLE_FFMPEG_AUDIO_DECODER=ON` instead.
|
||||||
@@ -79,7 +79,7 @@ cd build
|
|||||||
cmake .. -DCMAKE_CXX_COMPILER=clang++-5.0 \
|
cmake .. -DCMAKE_CXX_COMPILER=clang++-5.0 \
|
||||||
-DCMAKE_C_COMPILER=clang-5.0 \
|
-DCMAKE_C_COMPILER=clang-5.0 \
|
||||||
-DCMAKE_CXX_FLAGS="-O2 -g -stdlib=libc++"
|
-DCMAKE_CXX_FLAGS="-O2 -g -stdlib=libc++"
|
||||||
make
|
cmake --build . -- -j"$(nproc)"
|
||||||
sudo make install (optional)
|
sudo make install (optional)
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -89,7 +89,7 @@ sudo make install (optional)
|
|||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake .. -DCMAKE_BUILD_TYPE=Release
|
cmake .. -DCMAKE_BUILD_TYPE=Release
|
||||||
make
|
cmake --build . -- -j"$(nproc)"
|
||||||
sudo make install (optional)
|
sudo make install (optional)
|
||||||
```
|
```
|
||||||
- To enable HLE AAC Decoding, use `cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG_AUDIO_DECODER=ON` instead.
|
- To enable HLE AAC Decoding, use `cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG_AUDIO_DECODER=ON` instead.
|
||||||
@@ -100,7 +100,7 @@ sudo make install (optional)
|
|||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||||
make
|
cmake --build . -- -j"$(nproc)"
|
||||||
sudo make install (optional)
|
sudo make install (optional)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user