From e7ba900cda2069797c9629e04373c57f6f742f2b Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 21 Jan 2015 13:29:01 -0800 Subject: [PATCH] add debug for dependency links --- cmake/android/QtCreateAPK.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/android/QtCreateAPK.cmake b/cmake/android/QtCreateAPK.cmake index e43a03eab9..ea93cdd4b2 100644 --- a/cmake/android/QtCreateAPK.cmake +++ b/cmake/android/QtCreateAPK.cmake @@ -77,6 +77,7 @@ macro(qt_create_apk) get_property(_DEP_DEPENDENCIES TARGET ${_DEP} PROPERTY INTERFACE_LINK_LIBRARIES) foreach(_SUB_DEP IN LISTS _DEP_DEPENDENCIES) + message("${_SUB_DEP} is a DEP of ${DEP}") if (NOT TARGET ${_SUB_DEP} AND NOT _SUB_DEP MATCHES "Qt5::.*") list(APPEND _DEPS_LIST ${_SUB_DEP}) endif()