Merge pull request #16 from Wunkolo/build-instruction-fix

Fix cmake out-of-source build instructions
This commit is contained in:
wheremyfoodat 2023-06-10 10:53:31 +03:00 committed by GitHub
commit 75c41a3841
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>
```