summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2016-02-02 12:05:56 +0100
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2016-02-02 12:17:21 +0000
commit40dfb0dcf3d1dd16264d1326282e7f9c7cedde64 (patch)
tree41d84349702482f3627845b1b23247e2884784c0
parent8c13f2437e118d19bdb25e264c216f7a85a88175 (diff)
downloadqt-creator-40dfb0dcf3d1dd16264d1326282e7f9c7cedde64.tar.gz
sqlite: Fix qbs build.
Qt 5.6 no longer pulls in the pthread library. Change-Id: I2059990ba55389e6f5cfe471e15bfc56920a7a5f Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--src/libs/sqlite/sqlite.qbs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/sqlite/sqlite.qbs b/src/libs/sqlite/sqlite.qbs
index 2aa3e5f4c9..e974e38cd6 100644
--- a/src/libs/sqlite/sqlite.qbs
+++ b/src/libs/sqlite/sqlite.qbs
@@ -13,7 +13,8 @@ QtcLibrary {
"SQLITE_ENABLE_COLUMN_METADATA"
])
cpp.optimization: "fast"
- cpp.dynamicLibraries: base.concat((qbs.targetOS.contains("unix") && !qbs.targetOS.contains("openbsd")) ? ["dl"] : [])
+ cpp.dynamicLibraries: base.concat((qbs.targetOS.contains("unix") && !qbs.targetOS.contains("openbsd"))
+ ? ["dl", "pthread"] : [])
Group {