CMake: Add TODO to apply generalized object library linking approach

Pick-to: 6.2
Change-Id: I1ea368e81d8b055ef353a0f021f188b45588c937
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
Alexandru Croitor 2021-06-11 17:25:59 +02:00
parent 602d26c38f
commit a37957df5c

View File

@ -195,6 +195,9 @@ function(__qt_internal_add_static_plugin_import_macro
__qt_internal_get_static_plugin_init_target_name("${plugin_target}" plugin_init_target)
set(objs_genex "$<TARGET_OBJECTS:${QT_CMAKE_EXPORT_NAMESPACE}::${plugin_init_target}>")
# TODO: Replace the target_sources call here with the more generalized approach that will be
# added to __qt_propagate_generated_resource (the one that determines whether to use
# target_sources or target_link_libraries depending on the CMake version).
target_sources(${QT_CMAKE_EXPORT_NAMESPACE}::${plugin_target} INTERFACE
"${objs_genex}")
endfunction()