summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/time/qtimezone/qtimezone.pro
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2019-05-27 17:47:22 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2019-06-06 15:54:32 +0200
commit548513a4bd050d3df0a85fed6e2d1a00ce06d2ab (patch)
tree9e65f2701e013c1d1232082d5635c1b4e7817dd3 /tests/auto/corelib/time/qtimezone/qtimezone.pro
parent29e3a4dfeaf5d4924eaa68824fb21998de687809 (diff)
Separate out the time, zone, date code from corelib/tools/
We'll be adding calendar code here as well, and tools/ was getting rather crowded, so it looks like time to move out a reasonably coherent sub-bundle of it all. Change-Id: I7e8030f38c31aa307f519dd918a43fc44baa6aa1 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'tests/auto/corelib/time/qtimezone/qtimezone.pro')
-rw-r--r--tests/auto/corelib/time/qtimezone/qtimezone.pro12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/corelib/time/qtimezone/qtimezone.pro b/tests/auto/corelib/time/qtimezone/qtimezone.pro
new file mode 100644
index 0000000000..5ec8d008e7
--- /dev/null
+++ b/tests/auto/corelib/time/qtimezone/qtimezone.pro
@@ -0,0 +1,12 @@
+CONFIG += testcase
+TARGET = tst_qtimezone
+QT = core-private testlib
+SOURCES = tst_qtimezone.cpp
+qtConfig(icu) {
+ QMAKE_USE_PRIVATE += icu
+}
+
+darwin {
+ OBJECTIVE_SOURCES += tst_qtimezone_darwin.mm
+ LIBS += -framework Foundation
+}