Skip to content

Commit

Permalink
Fix Qt53DExtrasConfig.cmake syntax which triggers error on ubuntu 20.…
Browse files Browse the repository at this point in the history
…04 (cmake 3.13)
  • Loading branch information
nirvn committed Feb 4, 2020
1 parent 2908227 commit c2c9d19
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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()

0 comments on commit c2c9d19

Please sign in to comment.