Make WinMain linkage compatible with Qt 5
In Qt 5, the Qt5Core target was extended by Qt5CoreConfigExtras.cmake to have a generator expression as interface linkage that would conditionally link WinMain. This patch implements the same through regular interface linkage right in corelib. Since the linkage happens through a generator expression, our dependency generator does not see this as a dependency. Therefore we add this as an unconditional package dependency for corelib, on Windows. In theory this could be done also in winmain's CMakeLists.txt, as targets can be extended outside of their directory. However this adds a directory id (WinMain:@<023423>) to the linkage, which mysteriously is not removed on the exported core target. Change-Id: If2abb9ba790f51274f582c9ec28c13d968b84302 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Qt CMake Build Botbb10
parent
efa9998521
commit
319fd4ea9a
|
|
@ -59,6 +59,11 @@ function(qt_internal_create_module_depends_file target)
|
|||
get_target_property(target_deps "${target}" _qt_target_deps)
|
||||
set(target_deps_seen "")
|
||||
|
||||
get_target_property(extra_depends "${target}" QT_EXTRA_PACKAGE_DEPENDENCIES)
|
||||
if(NOT extra_depends STREQUAL "${extra_depends}-NOTFOUND")
|
||||
list(APPEND target_deps ${extra_depends})
|
||||
endif()
|
||||
|
||||
set(qtdeps "")
|
||||
set(third_party_deps "")
|
||||
set(third_party_deps_seen "")
|
||||
|
|
|
|||
|
|
@ -1080,6 +1080,17 @@ if(WIN32)
|
|||
endif()
|
||||
|
||||
qt_internal_add_link_flags_gc_sections(Core PRIVATE)
|
||||
|
||||
if(WIN32)
|
||||
set(isExe $<STREQUAL:$<TARGET_PROPERTY:TYPE>,EXECUTABLE>)
|
||||
set(isWin32 $<BOOL:$<TARGET_PROPERTY:WIN32_EXECUTABLE>>)
|
||||
set(isNotExcluded $<NOT:$<BOOL:$<TARGET_PROPERTY:Qt5_NO_LINK_QTMAIN>>>)
|
||||
set(isPolicyNEW $<TARGET_POLICY:CMP0020>)
|
||||
|
||||
target_link_libraries(Core INTERFACE $<$<AND:${isExe},${isWin32},${isNotExcluded},${isPolicyNEW}>:Qt::WinMain>)
|
||||
qt_internal_module_info(win_main_module WinMain)
|
||||
set_property(TARGET Core APPEND PROPERTY QT_EXTRA_PACKAGE_DEPENDENCIES "${win_main_module_versioned}\\\;${PROJECT_VERSION}")
|
||||
endif()
|
||||
# special case end
|
||||
|
||||
qt_create_tracepoints(Core qtcore.tracepoints)
|
||||
|
|
|
|||
|
|
@ -397,10 +397,6 @@ function(add_qt_gui_executable target)
|
|||
endif()
|
||||
target_link_libraries("${target}" PRIVATE Qt::Core Qt::Gui)
|
||||
|
||||
if(WIN32)
|
||||
target_link_libraries("${target}" PRIVATE Qt::WinMain)
|
||||
endif()
|
||||
|
||||
if(ANDROID)
|
||||
qt_android_generate_deployment_settings("${target}")
|
||||
endif()
|
||||
|
|
|
|||
|
|
@ -23,6 +23,4 @@ extend_target(WinMain CONDITION NOT WINRT
|
|||
extend_target(WinMain CONDITION MINGW
|
||||
DEFINES QT_NEEDS_QMAIN
|
||||
)
|
||||
|
||||
extend_target(Core LIBRARIES WinMain)
|
||||
# special case end
|
||||
|
|
|
|||
Loading…
Reference in New Issue