Fix Qt53DExtrasConfig.cmake syntax which triggers error on ubuntu 20.04 (cmake 3.13)

This commit is contained in:
nirvn 2020-02-03 15:43:54 +07:00 committed by Nyall Dawson
parent bb20cee00a
commit f072e09add

View File

@ -1,8 +1,8 @@
if (NOT TARGET Qt5::3DExtras)
add_library(Qt5::3DExtras SHARED IMPORTED)
set_target_properties(Qt5::3DExtras PROPERTIES
IMPORTED_LOCATION_RELEASE ${QT5_3DEXTRA_LIBRARY}
IMPORTED_LOCATION_RELEASE "${QT5_3DEXTRA_LIBRARY}"
IMPORTED_SONAME_RELEASE "${QT5_3DEXTRA_LIBRARY}.5"
IMPORTED_CONFIGURATIONS RELEASE
IMPORTED_CONFIGURATIONS RELEASE
)
endif()