mirror of
https://github.com/glfw/glfw.git
synced 2025-04-05 05:25:07 +00:00
Fix variable dereferencing
This commit is contained in:
parent
e1d9e2ba73
commit
98dde03ce1
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ if ("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}")
|
|||
endif()
|
||||
|
||||
option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
|
||||
option(GLFW_BUILD_EXAMPLES "Build the GLFW example programs" GLFW_STANDALONE)
|
||||
option(GLFW_BUILD_TESTS "Build the GLFW test programs" GLFW_STANDALONE)
|
||||
option(GLFW_BUILD_EXAMPLES "Build the GLFW example programs" ${GLFW_STANDALONE})
|
||||
option(GLFW_BUILD_TESTS "Build the GLFW test programs" ${GLFW_STANDALONE})
|
||||
option(GLFW_BUILD_DOCS "Build the GLFW documentation" ON)
|
||||
option(GLFW_INSTALL "Generate installation target" ON)
|
||||
option(GLFW_VULKAN_STATIC "Assume the Vulkan loader is linked with the application" OFF)
|
||||
|
|
Loading…
Add table
Reference in a new issue