Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dschmidt/libcrashreporter-qt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTeo Mrnjavac <teo@kde.org>2016-03-24 09:40:02 +0300
committerTeo Mrnjavac <teo@kde.org>2016-03-24 09:40:02 +0300
commita80d71ab852947ee398fc914dc3df83b99184502 (patch)
treecbccaff5d4e72f95f6bf7868a26e11b1f81d53be
parent282e3f2b2f401b6416c9847168cbd30d5512a19f (diff)
Explicitly link Breakpad against pthread to fix link failure on gold.
-rw-r--r--3rdparty/breakpad/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/breakpad/CMakeLists.txt b/3rdparty/breakpad/CMakeLists.txt
index 6756109..c4f8537 100644
--- a/3rdparty/breakpad/CMakeLists.txt
+++ b/3rdparty/breakpad/CMakeLists.txt
@@ -75,7 +75,7 @@ endif()
include_directories(.)
# ADD_DEFINITIONS( -fPIC )
add_library(crashreporter-breakpad STATIC ${breakpadSources} )
-# TARGET_LINK_LIBRARIES( tomahawk-breakpad )
+target_link_libraries(crashreporter-breakpad pthread)
if(WIN32)
target_link_libraries(crashreporter-breakpad "mingwex")