This commit is contained in:
Joel Winarske 2026-08-06 00:27:47 +03:00 • committed by GitHub
commit a0832c4453
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -344,3 +344,16 @@ if (GLFW_INSTALL)
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}")
endif()
#--------------------------------------------------------------------
# Link Time Optimization
#--------------------------------------------------------------------
if (BUILD_SHARED_LIBS AND ${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.9.0")
include(CheckIPOSupported)
check_ipo_supported(RESULT result OUTPUT output)
if(result)
message(STATUS "glfw: Using IPO")
set_property(TARGET glfw PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
else()
message(WARNING "IPO is not supported: ${output}")
endif ()
endif ()