mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-22 12:20:06 +00:00
s/make/cmake command
parent
8dba80f3c8
commit
689ff6bb1b
@ -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)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user