summaryrefslogtreecommitdiffstats
path: root/util/cmake/tests/data/standardpaths.pro
blob: 4b45788e4ff040d68e3da29ae5a9d1183eb4c15e (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:!android-embedded {
        SOURCES += io/qstandardpaths_android.cpp
    } else:haiku {
        SOURCES += io/qstandardpaths_haiku.cpp
    } else {
        SOURCES += io/qstandardpaths_unix.cpp
    }
}