mirror of https://github.com/procxx/kepka.git
Enabled LTO optimizations.
Closes #226. Signed-off-by: Vitaly Zaitsev <vitaly@easycoding.org>
This commit is contained in:
parent
450409095a
commit
6ebbe5a2a9
|
@ -696,6 +696,22 @@ if (LINUX)
|
|||
target_link_libraries(Kepka Qt5::DBus dl ${ALSA_LIBRARIES} ${PULSEAUDIO_LIBRARIES})
|
||||
endif()
|
||||
|
||||
# Enable LTO optimizations...
|
||||
include(CheckIPOSupported)
|
||||
check_ipo_supported(RESULT ipo_result OUTPUT ipo_output)
|
||||
|
||||
if(ipo_result)
|
||||
message(STATUS "IPO optimizations enabled.")
|
||||
if(LINUX AND (CMAKE_CXX_COMPILER_ID MATCHES "GNU"))
|
||||
set(CMAKE_AR "/usr/bin/gcc-ar")
|
||||
set(CMAKE_RANLIB "/usr/bin/gcc-ranlib")
|
||||
set(CMAKE_NM "/usr/bin/gcc-nm")
|
||||
endif()
|
||||
set_property(TARGET Kepka PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
|
||||
else()
|
||||
message(WARNING "IPO is not supported: ${ipo_output}")
|
||||
endif()
|
||||
|
||||
##================================================
|
||||
## Installlation
|
||||
##================================================
|
||||
|
|
Loading…
Reference in New Issue