summaryrefslogtreecommitdiffstats
path: root/src/tools/sdpscanner/sdpscanner.pro
blob: 6bf0a96c89e491055c97b4722f92f88e95f7f99d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
TEMPLATE = app
TARGET = sdpscanner

QT = core

SOURCES = main.cpp

CONFIG += link_pkgconfig
PKGCONFIG_PRIVATE += bluez

load(qt_tool)

linux-*: {
    # bluetooth.h is not standards compliant
    contains(QMAKE_CXXFLAGS, -std=c++0x) {
        QMAKE_CXXFLAGS -= -std=c++0x
        QMAKE_CXXFLAGS += -std=gnu++0x
        CONFIG -= c++11
    }
    c++11 {
        CONFIG -= c++11
        QMAKE_CXXFLAGS += -std=gnu++0x
    }
}