summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/io.pri
diff options
context:
space:
mode:
authorIan Dean <ian@mediator-software.com>2013-10-15 12:32:21 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-30 21:58:36 +0100
commitfe41442575b64956aec5c67f909f1eab7da1015b (patch)
tree99c749b937822366baa13c96178b207cacc38d18 /src/corelib/io/io.pri
parent44e68b90266336d3d46279eddcbb2a4a775f0d2a (diff)
iOS: Add standard paths implementation for iOS
A standard paths implementation for iOS. The APIs used on iOS require that the source file be "Objective-C++" (with a .MM extension), as there are no APIs available in C++ for this. The implementation complies with the latest documentation on standard paths. Change-Id: I349d3c5d4ddb6fb1297a45dc9ae26b56ac528abb Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: David Faure <david.faure@kdab.com>
Diffstat (limited to 'src/corelib/io/io.pri')
-rw-r--r--src/corelib/io/io.pri2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/corelib/io/io.pri b/src/corelib/io/io.pri
index eab3981f7a..f06bf61b09 100644
--- a/src/corelib/io/io.pri
+++ b/src/corelib/io/io.pri
@@ -135,6 +135,8 @@ win32 {
mac {
macx {
SOURCES += io/qstandardpaths_mac.cpp
+ } else:ios {
+ OBJECTIVE_SOURCES += io/qstandardpaths_ios.mm
} else {
SOURCES += io/qstandardpaths_unix.cpp
}