From e0af6969c67841e205507bb63bd7fd667403cc13 Mon Sep 17 00:00:00 2001 From: Wunkolo Date: Fri, 9 Jun 2023 20:23:14 -0700 Subject: [PATCH] Fix cmake out-of-source build instructions These directions are incorrectly using `cmake .` when it should be `cmake ..`. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index a3b2b37a..8631d18f 100644 --- a/readme.md +++ b/readme.md @@ -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 ```