add QT_QTGUI_LIBRARY to link libraries of check programs to get access to QDesktopServices on Mac OS X

This commit is contained in:
Stephan Witt 2012-10-16 22:36:23 +02:00
parent 63ead2010d
commit a5317f6594

View File

@ -13,7 +13,9 @@ macro(sources _program)
endforeach() endforeach()
set(${_program}_SOURCES ${_tmplist}) set(${_program}_SOURCES ${_tmplist})
add_executable(${_program} ${_tmplist}) add_executable(${_program} ${_tmplist})
target_link_libraries(${_program} support ${Lyx_Boost_Libraries} ${QT_QTCORE_LIBRARY} ${ZLIB_LIBRARY} ${LIBINTL_LIBRARIES} ${ICONV_LIBRARY}) target_link_libraries(${_program} support
${Lyx_Boost_Libraries} ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY}
${ZLIB_LIBRARY} ${LIBINTL_LIBRARIES} ${ICONV_LIBRARY})
endmacro() endmacro()
file(GLOB test_sources ${TOP_SRC_DIR}/src/support/tests/${LYX_CPP_FILES}) file(GLOB test_sources ${TOP_SRC_DIR}/src/support/tests/${LYX_CPP_FILES})