This commit is contained in:
Joel Winarske 2025-01-19 07:29:55 +00:00 committed by GitHub
commit 2c96b27d42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -361,3 +361,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 ()