From f9a8f5d6b17746e3fbf605d07fdf623881804e4e Mon Sep 17 00:00:00 2001 From: peri4 Date: Sat, 7 Jun 2025 10:57:06 +0300 Subject: [PATCH] qad_target_link_libraries now link Qt libs after all other --- cmake/QtWraps.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/QtWraps.cmake b/cmake/QtWraps.cmake index 4ab78db..7d4c4a6 100644 --- a/cmake/QtWraps.cmake +++ b/cmake/QtWraps.cmake @@ -726,7 +726,7 @@ macro(qad_target_link_libraries _NAME) list(APPEND _ARGS ${_i}) endif() endforeach() - target_link_libraries(${_TARGET} ${Qt${_v}_LIBRARIES} ${_ARGS}) + target_link_libraries(${_TARGET} ${_ARGS} ${Qt${_v}_LIBRARIES}) #message("link ${_TARGET}: ${Qt${_v}_LIBRARIES} ${_ARGS}") endif() endforeach()