diff --git a/qad/QtWraps.cmake b/qad/QtWraps.cmake index 0bbb707..8e749a8 100644 --- a/qad/QtWraps.cmake +++ b/qad/QtWraps.cmake @@ -412,7 +412,7 @@ macro(qt_target_link_libraries _NAME) foreach(_i ${ARGN}) set(_ind -1) list(FIND QT_MULTILIB_LIST "${_i}" _ind) - if (_ind GREATER_EQUAL 0) + if (_ind GREATER -1) _qt_multitarget_suffix_(_TS ${_i} ${_v}) list(APPEND _ARGS ${_i}${_TS}) else() @@ -481,7 +481,7 @@ macro(qt_install) else() set(_ind -1) string(FIND "${_i}" "QtPlugins" _ind) - if (_ind GREATER_EQUAL 0) + if (_ind GREATER -1) string(REPLACE "QtPlugins" "${Qt${_v}_PLUGINS_DIR}" _o "${_i}") set(_INST_LIST ${_INST_LIST} "${_o}") else()