Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Be explicit with Qt link libraries
For the analysis tests, instead of linking with all the found
QT_LIBRARIES, pick only the ones that are needed.
  • Loading branch information
simonsonc committed Mar 27, 2014
1 parent 984fe0e commit 8dff030
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/src/analysis/CMakeLists.txt
Expand Up @@ -59,7 +59,10 @@ MACRO (ADD_QGIS_TEST testname testsrc)
ADD_CUSTOM_TARGET(qgis_${testname}moc ALL DEPENDS ${qgis_${testname}_MOC_SRCS})
ADD_EXECUTABLE(qgis_${testname} ${qgis_${testname}_SRCS})
ADD_DEPENDENCIES(qgis_${testname} qgis_${testname}moc)
TARGET_LINK_LIBRARIES(qgis_${testname} ${QT_LIBRARIES} qgis_analysis)
TARGET_LINK_LIBRARIES(qgis_${testname}
${QT_QTCORE_LIBRARY}
${QT_QTTEST_LIBRARY}
qgis_analysis)
ADD_TEST(qgis_${testname} ${CMAKE_CURRENT_BINARY_DIR}/../../../output/bin/qgis_${testname})
#SET_TARGET_PROPERTIES(qgis_${testname} PROPERTIES
# INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/${QGIS_LIB_DIR}
Expand Down

0 comments on commit 8dff030

Please sign in to comment.