summaryrefslogtreecommitdiffstats
path: root/util/cmake/tests/data/standardpaths.pro
blob: b9896b8e294f48bd2189b591fae2711afc8a29ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
win32 {
    !winrt {
        SOURCES +=io/qstandardpaths_win.cpp 
    } else {
        SOURCES +=io/qstandardpaths_winrt.cpp
    }
} else:unix {
    mac {
        OBJECTIVE_SOURCES += io/qstandardpaths_mac.mm
    } else:android {
        SOURCES += io/qstandardpaths_android.cpp
    } else:haiku {
        SOURCES += io/qstandardpaths_haiku.cpp
    } else {
        SOURCES += io/qstandardpaths_unix.cpp
    }
}