# Создание статической библиотеки из объектной библиотеки function(myx_cmake_add_static_library target) get_target_property(__target_type ${target} TYPE) if(NOT __target_type STREQUAL OBJECT_LIBRARY) message( FATAL_ERROR "MyxCMake: myx_cmake_add_static_library needs target of type OBJECT_LIBRARY") return() endif() add_library(${target}-static STATIC $) set_target_properties(${target}-static PROPERTIES OUTPUT_NAME ${target} ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}) install(TARGETS ${target}-static COMPONENT static ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) endfunction()