Merge pull request #7671 from AndrewMeadows/link-pthread

add pthread link dependency to interface for UNIX
This commit is contained in:
Brad Hefta-Gaub 2016-04-15 10:24:31 -07:00
commit a88cd4b786

View file

@ -211,6 +211,10 @@ if (WIN32)
add_paths_to_fixup_libs(${Qt5_DIR}/../../../plugins/qtwebengine)
endif()
if (UNIX)
target_link_libraries(${TARGET_NAME} pthread)
endif(UNIX)
# assume we are using a Qt build without bearer management
add_definitions(-DQT_NO_BEARERMANAGEMENT)