# Added in CMake 3.9 include (CheckIPOSupported) check_ipo_supported (RESULT result OUTPUT output) if (CMAKE_SYSTEM_PROCESSOR STREQUAL armv7l) set(ENABLE_LTO OFF) endif() if (result AND ENABLE_LTO AND CMAKE_BUILD_TYPE STREQUAL "Release") message (STATUS "\nLTO enabled.") else() if (${output}) message (WARNING "\nIPO disabled: ${output}") else() message (WARNING "\nIPO was disabled or not in a Release build.") endif() set (ENABLE_LTO OFF) endif() function (SFIZZ_ENABLE_LTO_IF_NEEDED TARGET) if (${ENABLE_LTO}) message(STATUS "Enabling LTO on ${TARGET}") set_property (TARGET ${TARGET} PROPERTY INTERPROCEDURAL_OPTIMIZATION True) endif() endfunction()