mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-18 13:41:26 +01:00
CMake: Fix typo in GLFW detection
Let it be noted I utterly dislike their syntax.
This commit is contained in:
@ -38,7 +38,7 @@ endif()
|
|||||||
|
|
||||||
if(WITH_SYSTEM_GLFW STREQUAL "ON")
|
if(WITH_SYSTEM_GLFW STREQUAL "ON")
|
||||||
find_package(glfw3 3.2.1 REQUIRED)
|
find_package(glfw3 3.2.1 REQUIRED)
|
||||||
else(WITH_SYSTEM_GLFW STREQUAL "IF_POSSIBLE")
|
elseif(WITH_SYSTEM_GLFW STREQUAL "IF_POSSIBLE")
|
||||||
find_package(glfw3 3.2.1)
|
find_package(glfw3 3.2.1)
|
||||||
endif()
|
endif()
|
||||||
if (glfw3_FOUND)
|
if (glfw3_FOUND)
|
||||||
|
|||||||
Reference in New Issue
Block a user