mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-14 18:26:47 +02:00
fix dependency qt module linking in LinkSharedDependencies
This commit is contained in:
parent
4216806967
commit
33d50c6eb6
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ macro(LINK_SHARED_DEPENDENCIES)
|
|||
# find these Qt modules and link them to our own target
|
||||
find_package(Qt5 COMPONENTS ${${TARGET_NAME}_DEPENDENCY_QT_MODULES} REQUIRED)
|
||||
|
||||
foreach(QT_MODULE ${QT_MODULES_TO_LINK})
|
||||
foreach(QT_MODULE ${${TARGET_NAME}_DEPENDENCY_QT_MODULES})
|
||||
target_link_libraries(${TARGET_NAME} Qt5::${QT_MODULE})
|
||||
endforeach()
|
||||
endif ()
|
||||
|
|
Loading…
Reference in a new issue