summaryrefslogtreecommitdiffstats
path: root/Tools/qmake/config.tests/icu/icu.pro
blob: 0486c531aad4065fa989b668b105d6d1bf8f58e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
SOURCES = icu.cpp
CONFIG += console
CONFIG -= qt dylib

win32 {
    CONFIG(static, static|shared) {
        CONFIG(debug, debug|release) {
            LIBS += -lsicuind -lsicuucd -lsicudtd
        } else {
            LIBS += -lsicuin -lsicuuc -lsicudt
        }
    } else {
        LIBS += -licuin -licuuc -licudt
    }
} else:!contains(QT_CONFIG,no-pkg-config):packagesExist("icu-i18n") {
    PKGCONFIG += icu-i18n
} else {
    LIBS += -licui18n -licuuc -licudata
}

load(qt_build_config)