summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@digia.com>2014-04-24 13:49:21 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-29 14:42:26 +0200
commit159465536f0dd1a373f0c67e5530f9af6ccec433 (patch)
tree0fd9ea4966c76a703b42380811c5b1b8e9983d4c /config.tests
parentf1eefd6cf99b2784b10390b7accf6bbe49245906 (diff)
Allow building against static ICU libs also on Unix
For dynamic builds of ICU, libicudata is an implicit dependency. Anyhow, it doesn't harm to explicitly link against it, either. So let's do this everywhere ... Task-number: QTBUG-38445 Change-Id: I420ba096e2ce5e1b8d81814ffb4aa7b300143b01 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/unix/icu/icu.pro5
1 files changed, 3 insertions, 2 deletions
diff --git a/config.tests/unix/icu/icu.pro b/config.tests/unix/icu/icu.pro
index 2c1b431f92..16267ff827 100644
--- a/config.tests/unix/icu/icu.pro
+++ b/config.tests/unix/icu/icu.pro
@@ -1,6 +1,7 @@
SOURCES = icu.cpp
CONFIG += console
CONFIG -= qt dylib
+
win32 {
CONFIG(static, static|shared) {
CONFIG(debug, debug|release) {
@@ -9,8 +10,8 @@ win32 {
LIBS += -lsicuin -lsicuuc -lsicudt
}
} else {
- LIBS += -licuin -licuuc
+ LIBS += -licuin -licuuc -licudt
}
} else {
- LIBS += -licui18n -licuuc
+ LIBS += -licui18n -licuuc -licudata
}