summaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorKonstantin Ritt <ritt.ks@gmail.com>2015-03-20 17:05:53 +0400
committerKonstantin Ritt <ritt.ks@gmail.com>2015-03-20 18:12:04 +0000
commit0a275328904b8b66cc80e36b627a48c35b13c205 (patch)
tree8e3624677239df193ee2fc915b20fef00814f40b /src/3rdparty
parent975260503a65725ef0957caf8b61bbca492e90be (diff)
Introduce icu_dependency.pri
Simply to hide the magic bahind the scenes. Change-Id: I69a159eb14712e68117f10e78745bdfbad46b6f2 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/icu_dependency.pri13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/3rdparty/icu_dependency.pri b/src/3rdparty/icu_dependency.pri
new file mode 100644
index 0000000000..6318631f6e
--- /dev/null
+++ b/src/3rdparty/icu_dependency.pri
@@ -0,0 +1,13 @@
+win32 {
+ CONFIG(static, static|shared) {
+ CONFIG(debug, debug|release) {
+ LIBS_PRIVATE += -lsicuind -lsicuucd -lsicudtd
+ } else {
+ LIBS_PRIVATE += -lsicuin -lsicuuc -lsicudt
+ }
+ } else {
+ LIBS_PRIVATE += -licuin -licuuc -licudt
+ }
+} else {
+ LIBS_PRIVATE += -licui18n -licuuc -licudata
+}