1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
TEMPLATE = subdirs
include(../mkspecs/common.pri)
HEADERS += \
utils.h \
SUBDIRS = \
ut_translations \
ut_translations/translations-tr \
ut_translations/translations-qttrid \
ut_phonenumberformatting \
ut_mlocationdatabase \
# enable only when we have icu available
contains(DEFINES, HAVE_ICU) {
SUBDIRS += \
ft_breakiterator \
ft_locales \
\ ## commented out as genrb is packaged separately in Fedora
\ ## and this test is mainly focussed on ICU, but not mlocale
\ # ft_localedata \
ft_mlocalebuckets \
ft_numbers \
ft_sorting \
ft_mcharsetdetector \
ft_mstringsearch \
ut_mcalendar
}
QMAKE_STRIP = echo
include(shell.pri)
include(runtests.pri)
check.target = check
check.CONFIG = recursive
QMAKE_EXTRA_TARGETS += check
check-xml.target = check-xml
check-xml.CONFIG = recursive
QMAKE_EXTRA_TARGETS += check-xml
QMAKE_CLEAN += **/*.log.xml ./coverage.log.xml **/*.log
|