From 6a7e8484267497dc735b54265cb8860af3053420 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Sun, 12 Jan 2020 22:36:57 -0500 Subject: [PATCH] Add note about Windows .lib weirdness --- desktop_version/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/desktop_version/README.md b/desktop_version/README.md index c41b3e9a..bf8fab1e 100644 --- a/desktop_version/README.md +++ b/desktop_version/README.md @@ -25,6 +25,10 @@ cd flibitBuild cmake -G "Visual Studio 10 2010" .. -DSDL2_INCLUDE_DIRS="C:\SDL2-2.0.10\include;C:\SDL2_mixer-2.0.4\include" -DSDL2_LIBRARIES="C:\SDL2-2.0.10\lib\x86\SDL2;C:\SDL2-2.0.10\lib\x86\SDL2main;C:\SDL2_mixer-2.0.4\lib\x86\SDL2_mixer" ``` +Note that on some systems, the `SDL2_LIBRARIES` list on Windows may need +SDL2/SDL2main/SDL2_mixer to have `.lib` at the end of them. The reason for this +inconsistency is unknown. + To generate everywhere else: ``` mkdir flibitBuild