mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 14:45:41 +12:00
Fix cmake out-of-source build instructions
These directions are incorrectly using `cmake .` when it should be `cmake ..`.
This commit is contained in:
parent
c7e3343974
commit
e0af6969c6
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ All you need is CMake and a generator of your choice (Make, Visual Studio, Ninja
|
|||
git clone https://github.com/wheremyfoodat/Panda3DS --recursive
|
||||
|
||||
cd Panda3DS && mkdir build && cd build
|
||||
cmake . -DCMAKE_BUILD_TYPE=Release # Set up compilers etc here if you'd like
|
||||
cmake .. -DCMAKE_BUILD_TYPE=Release # Set up compilers etc here if you'd like
|
||||
|
||||
<Invoke Make, Visual Studio, or whatever you would like to use>
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue