summaryrefslogtreecommitdiffstats
path: root/qdb.pro
blob: c63b7c1bd6e19da3d44ab9535d536960d0570851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
load(configure)
!daemon_only:!qtCompileTest(libusb10): error("Could not find libusb-1.0, which is mandatory for host parts of QDB")

load(qt_parts)

SUBDIRS += libqdb
sub_tests.depends += libqdb

!daemon_only {
    SUBDIRS += qdb

    qdb.depends += libqdb
    # Tests share files with qdb and parallel compilation in that case may lead to error C1083
    # with MSVC. Avoid that by building tests after the main project.
    sub_tests.depends += qdb
}

unix {
    SUBDIRS += qdbd

    qdbd.depends += libqdb
}