Browse Source

CMake: Fix typo in GLFW detection

Let it be noted I utterly dislike their syntax.
pull/456/head
Ahmad Fatoum 6 years ago
parent
commit
2b2b1f91ee
No known key found for this signature in database GPG Key ID: C3EAC3DE9321D59B
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utils.cmake

+ 1
- 1
utils.cmake View File

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

Loading…
Cancel
Save