Only set the IMPLIB target properties on Windows.

Change-Id: I5362ae87c90fe08460599602b54484b6d4491db8
Reviewed-by: Clinton Stimpson <clinton@elemtech.com>
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
This commit is contained in:
Stephen Kelly 2012-08-21 12:18:30 +02:00 committed by Qt by Nokia
parent 6c1670d8c2
commit 6b5cffdad5

View File

@ -132,6 +132,7 @@ macro(_populate_imported_target_properties Configuration LIB_LOCATION IMPLIB_LOC
\"IMPORTED_SONAME_${Configuration}\" \"$${CMAKE_LIB_SONAME}\"
!!ENDIF
)
!!IF !isEmpty(CMAKE_WINDOWS_BUILD)
if(NOT \"${IMPLIB_LOCATION}\" STREQUAL \"\")
set_target_properties(Qt5::$${CMAKE_MODULE_NAME} PROPERTIES
!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
@ -141,6 +142,7 @@ macro(_populate_imported_target_properties Configuration LIB_LOCATION IMPLIB_LOC
!!ENDIF
)
endif()
!!ENDIF
endmacro()
if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME})