blob: f0a7eda2ff25f27c2da19f2f4064313534f8a79e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
enable-examples {
QTIVI_BUILD_PARTS = $$QT_BUILD_PARTS
QTIVI_BUILD_PARTS *= examples
}
enable-tests {
QTIVI_BUILD_PARTS = $$QT_BUILD_PARTS
QTIVI_BUILD_PARTS *= tests
}
QML_IMPORT_PATH = $$shadowed($$PWD)/qml
MIN_MINOR = 5
!equals(QT_MAJOR_VERSION, 5)|lessThan(QT_MINOR_VERSION, $$MIN_MINOR):error("QtIvi needs to be built against Qt 5.$${MIN_MINOR}+")
load(configure)
qtCompileTest(dlt)
qtCompileTest(taglib)
load(qt_parts)
OTHER_FILES += sync.profile
|