CMake: Add helper to swiftify imported properties from dependencies

Works around https://gitlab.kitware.com/cmake/cmake/-/issues/26195
This commit is contained in:
Andrew Kaster 2024-08-17 12:51:34 -06:00 committed by Andrew Kaster
commit 7f0044a721
Notes: github-actions[bot] 2024-08-17 23:45:30 +00:00
3 changed files with 19 additions and 0 deletions

View file

@ -252,3 +252,8 @@ function(add_lagom_library_install_rules target_name)
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
)
endfunction()
if (NOT COMMAND swizzle_target_properties_for_swift)
function(swizzle_target_properties_for_swift target)
endfunction()
endif()