dc869e70ac
Change-Id: I886e15585bd3bfed3303e4b845cd8960a9461277
24 lines
693 B
Prolog
24 lines
693 B
Prolog
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
|
|
|
|
VERSION = 2.0.1
|
|
|
|
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
|
|
|
|
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
|