blob: 38d7c987bf52f9bef9905ce8f1e065a2f0cb1a62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
QT += widgets
HEADERS += mainwindow.h backend.h regtab.h analyser.h settings.h \
std_analysers.h aux.h regdisplaypanel.h regedit.h
SOURCES += main.cpp mainwindow.cpp regtab.cpp backend.cpp analyser.cpp \
std_analysers.cpp settings.cpp aux.cpp regdisplaypanel.cpp regedit.cpp
LIBS += -L../lib/ -lsocdesc -lxml2
INCLUDEPATH += ../lib/ ../../hwstub/lib
unix {
!nohwstub {
message("Use 'qmake -config nohwstub' if you want to disable hwstub support")
LIBS += -L../../hwstub/lib -lhwstub
DEFINES += HAVE_HWSTUB
CONFIG += link_pkgconfig
PKGCONFIG += libusb-1.0
}
}
CONFIG += debug
|